* {
  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: #0f172a;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fb 48%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 16px 36px rgba(8, 145, 178, 0.28);
}

.brand-mark::before {
  position: absolute;
  inset: -7px;
  content: "";
  border-radius: inherit;
  background: rgba(34, 211, 238, 0.24);
  filter: blur(12px);
}

.brand-mark span {
  position: relative;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(90deg, #0891b2, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: #0891b2;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6px 0 18px;
}

.mobile-nav a {
  display: block;
  padding: 12px 6px;
  border-top: 1px solid #e2e8f0;
  color: #334155;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0 calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
  opacity: 0.42;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.62) 48%, rgba(2, 6, 23, 0.84));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.page-hero span,
.section-heading span,
.detail-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(103, 232, 249, 0.35);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.16);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 860px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-content h2 {
  margin: 0 0 16px;
  color: #67e8f9;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.15;
}

.hero-content p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.hero-chips,
.tag-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #0f172a;
  background: #e0f2fe;
  font-size: 13px;
  font-weight: 750;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 40px rgba(14, 116, 144, 0.28);
}

.btn.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn.soft {
  color: #155e75;
  background: #ecfeff;
}

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

.hero-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.5);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 145, 178, 0.88);
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #67e8f9;
}

.search-band,
.category-strip,
.section-block,
.page-hero,
.category-overview,
.filter-panel,
.search-tools,
.breadcrumb,
.detail-hero,
.player-section,
.detail-content {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.search-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px);
  gap: 24px;
  align-items: center;
  margin-top: -34px;
  padding: 28px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(20px);
}

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

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

.search-band p {
  margin-top: 8px;
  color: #64748b;
}

.site-search {
  display: flex;
  gap: 10px;
}

.site-search input,
.search-tools input,
.search-tools select {
  min-height: 48px;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  padding: 0 16px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
}

.site-search input:focus,
.search-tools input:focus,
.search-tools select:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.site-search button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  font-weight: 800;
  cursor: pointer;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.category-strip a {
  padding: 12px 16px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  color: #155e75;
  background: #ecfeff;
  font-weight: 800;
  transition: 0.2s ease;
}

.category-strip a:hover {
  transform: translateY(-2px);
  background: #cffafe;
}

.section-block {
  margin-top: 64px;
}

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

.section-heading span {
  margin-bottom: 8px;
  color: #0891b2;
  background: #ecfeff;
  border-color: #bae6fd;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading a {
  color: #0891b2;
  font-weight: 800;
}

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

.page-grid {
  margin-top: 30px;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
}

.card-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #0891b2);
}

.card-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.7));
  opacity: 0.78;
}

.card-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 145, 178, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.card-body {
  padding: 16px;
}

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

.card-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: #0891b2;
}

.card-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 0;
  overflow: hidden;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  color: #155e75;
  background: #ecfeff;
}

.tag-row.large span {
  min-height: 34px;
  padding: 8px 13px;
  font-size: 14px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 50px 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.rank-num {
  color: #0891b2;
  font-size: 20px;
  font-weight: 900;
}

.ranking-row img {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  margin-bottom: 5px;
}

.rank-info em {
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: 48px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.42), transparent 35%),
    linear-gradient(135deg, #0f172a, #164e63 58%, #1d4ed8);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.page-hero.slim {
  display: block;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.8;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.category-card a {
  display: block;
  min-height: 220px;
  padding: 28px;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #f0f9ff);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.2s ease;
}

.category-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
}

.category-card strong {
  display: block;
  color: #0f172a;
  font-size: 26px;
}

.category-card p {
  color: #475569;
  line-height: 1.8;
}

.category-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.category-card span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #155e75;
  background: #ecfeff;
  font-size: 13px;
  font-weight: 700;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter-panel button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  color: #155e75;
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.filter-panel button.is-active,
.filter-panel button:hover {
  color: #ffffff;
  background: #0891b2;
}

.search-tools {
  display: grid;
  grid-template-columns: 1fr 220px 160px;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background: #ffffff;
}

.search-tools p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.ranking-page {
  width: min(980px, calc(100% - 32px));
  margin: 36px auto 0;
}

.ranking-wide {
  margin-bottom: 14px;
}

.ranking-wide a {
  display: grid;
  grid-template-columns: 70px 100px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.ranking-badge {
  color: #0891b2;
  font-size: 24px;
  font-weight: 900;
}

.ranking-wide img {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-wide strong,
.ranking-wide em {
  display: block;
}

.ranking-wide strong {
  font-size: 22px;
}

.ranking-wide em {
  margin-top: 8px;
  color: #64748b;
  font-style: normal;
}

.ranking-wide p {
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #0891b2;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 26px;
  padding: 34px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 0%, rgba(34, 211, 238, 0.32), transparent 34%),
    linear-gradient(135deg, #020617, #0f172a 55%, #164e63);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.36);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-info p {
  max-width: 820px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.detail-actions .btn.ghost {
  border-color: rgba(255, 255, 255, 0.32);
}

.player-section {
  margin-top: 48px;
}

.player-section h2,
.detail-content h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.movie-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  object-fit: contain;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.52));
  cursor: pointer;
}

.player-start {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 50px rgba(6, 182, 212, 0.32);
  font-size: 32px;
}

.movie-player.is-playing .player-layer {
  display: none;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 42px;
}

.detail-content article {
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.detail-content p {
  margin: 0;
  color: #334155;
  line-height: 1.95;
}

.related-block {
  margin-bottom: 40px;
}

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

.rank-card {
  display: block;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

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

.rank-card span,
.rank-card em {
  display: block;
  padding: 0 14px;
}

.rank-card span {
  margin-top: 13px;
  font-weight: 850;
}

.rank-card em {
  margin: 6px 0 14px;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

.site-footer {
  margin-top: 76px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #020617, #0f172a 55%, #111827);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 36px;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

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

.site-footer p {
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin: 10px 0;
}

.site-footer a:hover {
  color: #67e8f9;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: #64748b;
}

.footer-bottom p {
  margin: 0;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero-carousel {
    min-height: auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 0 86px;
  }

  .hero-poster {
    max-width: 320px;
  }

  .search-band,
  .page-hero,
  .detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .search-band {
    margin-top: 22px;
  }

  .movie-grid,
  .category-overview,
  .ranking-list,
  .related-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-tools {
    grid-template-columns: 1fr;
  }

  .ranking-wide a {
    grid-template-columns: 52px 82px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .brand-text {
    font-size: 18px;
  }

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

  .hero-content h2 {
    font-size: 25px;
  }

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

  .movie-grid,
  .category-overview,
  .ranking-list,
  .related-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    gap: 22px;
  }

  .detail-poster {
    max-width: 260px;
  }

  .ranking-row,
  .ranking-wide a {
    grid-template-columns: 42px 74px minmax(0, 1fr);
    gap: 12px;
  }

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