:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f97316;
  --amber: #f59e0b;
  --green: #064e3b;
  --green-light: #10b981;
  --blue: #2563eb;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
}

.site-nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.24);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.nav-links a {
  padding: 10px 14px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--red);
  background: #fef2f2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #374151;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 52%, #fff1f2 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.22;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  left: -110px;
  top: 92px;
  background: radial-gradient(circle, var(--red), transparent 68%);
}

.hero-orb-two {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -140px;
  background: radial-gradient(circle, var(--orange), transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #374151;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 800;
}

.hero-mini-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero-mini-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.86fr);
  align-items: center;
  gap: 44px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.45s ease both;
}

.hero-kicker {
  display: inline-block;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line {
  max-width: 720px;
  margin: 0 0 22px;
  color: #374151;
  font-size: clamp(17px, 2vw, 23px);
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #991b1b;
  background: #fee2e2;
  font-size: 12px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.16);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.btn-light {
  color: var(--red-dark);
  background: #ffffff;
  border: 2px solid rgba(220, 38, 38, 0.2);
}

.hero-cover {
  position: relative;
  display: block;
  width: min(430px, 100%);
  justify-self: center;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #fee2e2, #fed7aa);
  box-shadow: 0 28px 70px rgba(153, 27, 27, 0.22);
  transform: rotate(2deg);
}

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

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

.hero-cover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.46));
}

.hero-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}

.hero-dots {
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fca5a5;
  cursor: pointer;
}

.hero-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.hero-search {
  display: flex;
  align-items: center;
  width: min(470px, 100%);
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  background: transparent;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.section {
  padding: 76px 0;
}

.section:nth-of-type(odd) {
  background: #ffffff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 22px;
}

.section-head span,
.page-hero span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1 {
  margin: 6px 0 10px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.section-head p,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

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

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

.compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.movie-card {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(17, 24, 39, 0.15);
}

.card-link {
  display: block;
  height: 100%;
}

.card-poster {
  position: relative;
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

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

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

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.92);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body {
  padding: 14px;
}

.card-body h2 {
  min-height: 46px;
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h2 {
  color: var(--red);
}

.card-meta,
.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.card-desc {
  min-height: 38px;
  margin-top: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: 10px;
}

.tag-row span {
  color: #7c2d12;
  background: #ffedd5;
}

.category-section {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.category-section .section-head h2,
.category-section .section-head p,
.category-section .section-head span {
  color: #ffffff;
}

.category-grid,
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-tile,
.overview-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-tile:hover,
.overview-card:hover {
  transform: translateY(-5px) scale(1.01);
  background: rgba(255, 255, 255, 0.2);
}

.category-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
}

.category-tile strong,
.overview-card strong {
  font-size: 21px;
}

.category-tile em,
.overview-card em,
.overview-card small {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.overview-card {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.overview-card small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.overview-card small span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

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

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 34px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
  transform: translateX(5px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
}

.ranking-item span {
  color: var(--red);
  font-weight: 900;
}

.ranking-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-item em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.cta-band {
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
}

.cta-band p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.page-main {
  padding-top: 72px;
  min-height: 70vh;
  background: #f9fafb;
}

.page-hero {
  padding: 78px 0 60px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.page-hero h1,
.page-hero p,
.page-hero span {
  color: #ffffff;
}

.filter-panel {
  margin: -28px 0 34px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-title h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.filter-title p {
  margin: 0 0 18px;
  color: var(--muted);
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 170px;
  gap: 12px;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: #ffffff;
  outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.quick-tags button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 800;
  cursor: pointer;
}

.quick-tags button.is-active {
  color: #ffffff;
  background: var(--red);
}

.searchable-grid {
  padding-bottom: 70px;
}

.empty-state {
  display: none;
  margin: 28px 0 80px;
  padding: 42px;
  border-radius: 20px;
  color: var(--muted);
  background: #ffffff;
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.breadcrumbs {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--red);
  font-weight: 800;
}

.breadcrumbs em {
  color: #374151;
  font-style: normal;
}

.detail-main {
  background: linear-gradient(135deg, #f9fafb, #fff7ed);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(300px, 0.8fr);
  gap: 28px;
  padding-bottom: 72px;
}

.player-card,
.info-card,
.related-panel {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.player-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000000;
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.player-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.28), rgba(0, 0, 0, 0.72));
}

.player-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
  font-size: 34px;
  line-height: 1;
}

.info-card {
  margin-top: 22px;
  padding: 26px;
}

.info-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.detail-meta {
  margin-bottom: 16px;
}

.detail-tags {
  margin-bottom: 18px;
}

.lead-text {
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 5px solid var(--red);
  border-radius: 12px;
  color: #374151;
  background: #fff7ed;
  font-size: 18px;
  font-weight: 700;
}

.info-card h2,
.related-panel h2 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.info-card p {
  color: #374151;
}

.review-box {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef2f2, #fff7ed);
}

.related-panel {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 22px;
}

.related-panel h2 {
  margin-top: 0;
}

.related-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.rank-row:hover {
  background: #f9fafb;
}

.rank-thumb {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #fee2e2;
}

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

.rank-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rank-info strong,
.rank-info small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-info strong {
  -webkit-line-clamp: 2;
}

.rank-info em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.rank-info small {
  color: var(--muted);
  -webkit-line-clamp: 2;
}

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

.ranking-card a {
  display: grid;
  grid-template-columns: 72px 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
}

.ranking-number {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.ranking-card img {
  width: 92px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #fee2e2;
}

.ranking-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ranking-content strong {
  font-size: 20px;
}

.ranking-content em,
.ranking-content small {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #064e3b, #065f46, #064e3b);
}

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

.brand-light .brand-text strong {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.brand-light .brand-text em {
  color: #d1fae5;
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: #d1fae5;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fed7aa;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid rgba(209, 250, 229, 0.18);
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-slide,
  .split-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-cover {
    width: min(360px, 100%);
    transform: none;
  }

  .detail-layout {
    gap: 18px;
  }

  .related-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 14px;
  }

  .hero {
    padding-top: 92px;
  }

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

  .hero-mini-links {
    justify-content: flex-start;
  }

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

  .hero-search {
    width: 100%;
  }

  .filter-controls,
  .ranking-card a {
    grid-template-columns: 1fr;
  }

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

  .card-body {
    padding: 11px;
  }

  .card-body h2 {
    font-size: 14px;
  }

  .page-main {
    padding-top: 66px;
  }

  .page-hero {
    padding: 58px 0 48px;
  }

  .ranking-card img {
    width: 100%;
    max-width: 160px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text em {
    display: none;
  }

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

  .card-desc,
  .tag-row {
    display: none;
  }
}
