:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #fff7f7;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e5e7eb;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --rose: #e11d48;
  --amber: #b45309;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(249, 250, 251, 0.96));
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--container);
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(135deg, var(--red), var(--rose));
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.25);
  transition: transform 0.3s ease;
}

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

.brand-text,
.footer-logo div {
  display: grid;
  line-height: 1.15;
}

.brand-text strong,
.footer-logo strong {
  font-size: 20px;
  color: #111827;
  letter-spacing: 0.02em;
}

.brand-text small,
.footer-logo small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  color: #475569;
  font-weight: 650;
  font-size: 15px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red-dark);
}

.header-search {
  position: relative;
  width: 240px;
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #fff;
  color: var(--text);
  outline: none;
  border-radius: 999px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search input {
  padding: 9px 42px 9px 16px;
}

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

.header-search button {
  position: absolute;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: var(--red);
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #334155;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 18px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.mobile-menu .nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  background: #fef2f2;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-search input {
  padding: 10px 14px;
}

.mobile-search button,
.wide-search button,
.primary-btn {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--rose));
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-search button {
  padding: 10px 18px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
}

.primary-btn:hover,
.wide-search button:hover,
.mobile-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(220, 38, 38, 0.28);
}

.ghost-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.ghost-btn.light {
  color: var(--red-dark);
  background: #fff;
  border-color: #fecaca;
}

.hero {
  position: relative;
  max-width: var(--container);
  margin: 26px auto 0;
  padding: 0 20px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 26px;
  background: #111827;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(15, 23, 42, 0.22) 100%), linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 55%);
}

.hero-content {
  position: absolute;
  left: clamp(28px, 7vw, 78px);
  right: clamp(28px, 7vw, 78px);
  bottom: clamp(56px, 10vw, 100px);
  max-width: 760px;
  color: #fff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #fca5a5;
  margin-bottom: 12px;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 20px);
}

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

.hero-tags {
  margin-top: 22px;
}

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

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

.tag-row span {
  color: var(--red-dark);
  background: #fee2e2;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dots button {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 48px;
  background: #fff;
}

.search-band,
.content-section,
.page-main,
.site-footer .footer-inner,
.footer-bottom {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.search-band {
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #fff7f7);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.search-band h2,
.search-band p {
  margin: 0;
}

.search-band h2 {
  font-size: 28px;
}

.search-band p {
  margin-top: 6px;
  color: var(--muted);
}

.wide-search {
  display: flex;
  gap: 12px;
}

.wide-search input {
  min-height: 48px;
  padding: 0 18px;
}

.wide-search button {
  min-width: 116px;
  padding: 0 20px;
}

.content-section {
  padding: 52px 20px 0;
}

.content-section.flush-top {
  padding-top: 24px;
}

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

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

.section-head h2,
.page-hero h1,
.detail-info h1,
.text-panel h2 {
  margin: 4px 0 0;
  color: #111827;
  line-height: 1.15;
}

.section-head h2 {
  font-size: 28px;
}

.section-head a {
  color: var(--red-dark);
  font-weight: 750;
}

.card-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.card-scroller::-webkit-scrollbar {
  display: none;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7f1d1d);
}

.movie-poster img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

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

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.3s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.movie-card h3 a {
  color: #111827;
  transition: color 0.25s ease;
}

.movie-card:hover h3 a {
  color: var(--amber);
}

.movie-card p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-compact {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
}

.movie-card-compact .movie-poster {
  aspect-ratio: 3 / 4;
}

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

.movie-card-compact h3 {
  font-size: 16px;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
}

.rank-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rank-item a {
  display: grid;
  grid-template-columns: 54px 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.rank-num {
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: #111827;
}

.rank-info {
  display: grid;
  min-width: 0;
}

.rank-info strong {
  overflow: hidden;
  color: #111827;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info small {
  overflow: hidden;
  color: #64748b;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-score {
  color: #fff;
  border-radius: 999px;
  background: var(--red);
  padding: 4px 10px;
  font-weight: 850;
}

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

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

.category-tile {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tile-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.category-tile-head span {
  color: #111827;
  font-size: 20px;
  font-weight: 850;
}

.category-tile-head a {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 750;
}

.category-tile p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.category-samples {
  display: grid;
  gap: 10px;
}

.mini-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.mini-card img {
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #111827;
}

.mini-card span {
  display: grid;
  min-width: 0;
}

.mini-card strong,
.mini-card small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-card small {
  color: var(--muted);
}

.page-main {
  padding: 28px 20px 0;
}

.page-hero {
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff1f2);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 4px 0 18px;
  color: #64748b;
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 16px;
}

.empty-state {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ranking-page {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.long-rank {
  max-height: none;
}

.detail-main {
  max-width: var(--container);
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #111827, #7f1d1d);
  color: #fff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  background: #111827;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.detail-poster img {
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.detail-info {
  align-self: center;
}

.detail-info .section-kicker {
  color: #fca5a5;
}

.detail-info h1 {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}

.detail-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.detail-data {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.detail-data div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-data dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.detail-data dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 850;
}

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

.video-section {
  padding-top: 44px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(225, 29, 72, 0.38), rgba(2, 6, 23, 0.7));
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.play-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--rose));
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.32);
  font-size: 32px;
  transform: translateX(2px);
}

.play-name {
  max-width: 80%;
  font-size: 22px;
  font-weight: 850;
  text-align: center;
}

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

.text-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.text-panel h2 {
  font-size: 24px;
}

.text-panel p {
  margin: 14px 0 0;
  color: #475569;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  margin-top: 64px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.5fr) minmax(180px, 0.5fr);
  gap: 44px;
  padding: 52px 20px 34px;
}

.footer-logo strong {
  color: #fff;
}

.footer-brand p {
  max-width: 540px;
  color: #94a3b8;
}

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

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column a {
  color: #cbd5e1;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: #fca5a5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: #94a3b8;
  font-size: 14px;
}

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-search {
    width: 220px;
    margin-left: auto;
  }

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

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

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

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

@media (max-width: 760px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .header-search {
    display: none;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    margin-top: 16px;
    padding: 0 14px;
  }

  .hero-stage {
    min-height: 560px;
    border-radius: 20px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 70px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-arrow {
    display: none;
  }

  .search-band,
  .two-columns,
  .detail-content-grid,
  .footer-inner,
  .footer-bottom,
  .detail-hero,
  .filter-panel,
  .ranking-page {
    grid-template-columns: 1fr;
  }

  .search-band {
    margin: 18px 14px 0;
    padding: 22px;
  }

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

  .content-section,
  .page-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .movie-grid.four-col,
  .movie-grid.three-col,
  .movie-grid.two-col,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-compact {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .rank-item a {
    grid-template-columns: 40px 64px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
    justify-self: start;
  }

  .page-hero {
    padding: 30px 22px;
  }

  .detail-hero {
    padding: 18px;
    border-radius: 22px;
  }

  .detail-poster img {
    min-height: 360px;
  }

  .player-shell {
    border-radius: 18px;
  }

  .footer-bottom {
    text-align: center;
  }
}
