:root {
  --color-black: #050108;
  --color-panel: rgba(23, 7, 36, 0.84);
  --color-panel-strong: rgba(38, 12, 58, 0.94);
  --color-grape-950: #1b0628;
  --color-grape-900: #2e0a43;
  --color-grape-800: #42115f;
  --color-grape-700: #641a8f;
  --color-grape-600: #8125bd;
  --color-grape-400: #c084fc;
  --color-grape-300: #d8b4fe;
  --color-gold-500: #f59e0b;
  --color-gold-400: #fbbf24;
  --color-gold-300: #fcd34d;
  --color-text: #f7ecff;
  --color-muted: #bda5d7;
  --color-line: rgba(216, 180, 254, 0.18);
  --shadow-purple: 0 22px 65px rgba(74, 15, 112, 0.48);
  --shadow-gold: 0 0 24px rgba(251, 191, 36, 0.26);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.24), transparent 32rem),
    radial-gradient(circle at 80% 12%, rgba(251, 191, 36, 0.16), transparent 28rem),
    linear-gradient(180deg, #08020d 0%, #12031d 38%, #050108 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  z-index: -1;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-line);
  background: rgba(9, 2, 15, 0.82);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1240px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #1b0628;
  background: linear-gradient(135deg, var(--color-grape-300), var(--color-gold-300));
  box-shadow: var(--shadow-gold);
  font-size: 18px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--color-grape-300), var(--color-gold-300), var(--color-grape-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 12px;
}

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

.nav-link {
  padding: 9px 14px;
  border-radius: 12px;
  color: var(--color-grape-300);
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(126, 34, 206, 0.46);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.22);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select,
.search-panel input,
.search-panel select {
  color: #fff;
  border: 1px solid rgba(216, 180, 254, 0.22);
  border-radius: 14px;
  background: rgba(31, 8, 48, 0.78);
  outline: none;
  transition: 180ms ease;
}

.header-search input {
  width: 230px;
  padding: 10px 12px;
}

.header-search button,
.mobile-search button {
  padding: 10px 14px;
  color: #1b0628;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-500));
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(251, 191, 36, 0.75);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.12);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  background: rgba(126, 34, 206, 0.56);
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 14px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(18, 3, 29, 0.96);
}

.mobile-panel.open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--color-grape-300);
  background: rgba(216, 180, 254, 0.06);
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-carousel {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(14px) saturate(1.2);
  opacity: 0.48;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 1, 8, 0.96) 0%, rgba(28, 4, 43, 0.85) 42%, rgba(5, 1, 8, 0.35) 100%),
    radial-gradient(circle at 76% 28%, rgba(251, 191, 36, 0.18), transparent 26rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 610px;
  margin: 0 auto;
  padding: 90px 0 130px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 12px;
  margin-bottom: 14px;
  color: var(--color-gold-300);
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.08);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-text h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #fff, var(--color-grape-300) 50%, var(--color-gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text p,
.page-hero p,
.detail-info .one-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: #eadcff;
  font-size: 18px;
  line-height: 1.9;
}

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

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

.hero-tags span,
.tag-line span,
.detail-tags a {
  padding: 6px 10px;
  color: var(--color-grape-300);
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 999px;
  background: rgba(216, 180, 254, 0.08);
  font-size: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.button.primary {
  color: #1b0628;
  background: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-500));
  box-shadow: var(--shadow-gold);
}

.button.ghost {
  color: var(--color-grape-300);
  border: 1px solid rgba(216, 180, 254, 0.26);
  background: rgba(216, 180, 254, 0.08);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(252, 211, 77, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), 0 0 42px rgba(168, 85, 247, 0.28);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.32), transparent 55%);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}

.hero-controls > button {
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(216, 180, 254, 0.22);
  background: rgba(31, 8, 48, 0.78);
  font-size: 32px;
}

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

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  color: var(--color-muted);
  border: 1px solid rgba(216, 180, 254, 0.16);
  border-radius: 16px;
  background: rgba(23, 7, 36, 0.7);
  transition: 180ms ease;
}

.hero-thumb.active,
.hero-thumb:hover {
  color: #fff;
  border-color: rgba(251, 191, 36, 0.48);
  background: rgba(126, 34, 206, 0.5);
}

.hero-thumb img {
  width: 40px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-thumb span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.section {
  padding: 64px 0;
}

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

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

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

.section-heading a,
.result-counter {
  color: var(--color-gold-300);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(49, 14, 73, 0.86), rgba(15, 4, 24, 0.92));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.44);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42), var(--shadow-gold);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-grape-900);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  color: #1b0628;
  background: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-500));
}

.rank-badge {
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-grape-700), var(--color-grape-400));
}

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

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
  color: var(--color-gold-300);
  font-size: 12px;
}

.movie-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card p {
  min-height: 42px;
  margin: 8px 0 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  gap: 16px;
}

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

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

.category-tile,
.category-card-large a {
  display: grid;
  gap: 8px;
  padding: 22px;
  min-height: 130px;
  border: 1px solid rgba(216, 180, 254, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.12), transparent 14rem),
    linear-gradient(135deg, rgba(64, 18, 95, 0.9), rgba(15, 4, 24, 0.94));
  transition: 180ms ease;
}

.category-tile:hover,
.category-card-large a:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.42);
}

.category-tile span,
.category-card-large h2 {
  font-size: 22px;
  font-weight: 800;
}

.category-tile strong,
.category-card-large strong {
  color: var(--color-gold-300);
}

.category-tile small,
.category-card-large p {
  color: var(--color-muted);
  line-height: 1.7;
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.rank-panel,
.content-card,
.search-panel,
.filter-bar,
.video-shell,
.ranking-list {
  border: 1px solid rgba(216, 180, 254, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(23, 7, 36, 0.78);
  box-shadow: var(--shadow-purple);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.rank-panel h2 {
  margin: 0 0 16px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 54px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: 160ms ease;
}

.rank-row:hover {
  background: rgba(216, 180, 254, 0.08);
}

.rank-number {
  color: var(--color-gold-300);
  font-weight: 900;
}

.rank-row img {
  width: 54px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

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

.rank-copy small {
  color: var(--color-muted);
}

.rank-row em {
  color: var(--color-gold-300);
  font-style: normal;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px;
  margin-bottom: 34px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 22%, rgba(251, 191, 36, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(67, 16, 100, 0.92), rgba(8, 2, 13, 0.96));
  box-shadow: var(--shadow-purple);
}

.small-hero h1,
.ranking-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--color-muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--color-grape-300);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 170px auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 30px;
}

.filter-bar label,
.search-panel label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
}

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

.search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 160px 160px auto;
  gap: 14px;
  padding: 20px;
  margin-bottom: 36px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(216, 180, 254, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(251, 191, 36, 0.14), transparent 22rem),
    linear-gradient(135deg, rgba(42, 9, 64, 0.94), rgba(8, 2, 13, 0.96));
  box-shadow: var(--shadow-purple);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(252, 211, 77, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.meta-list div {
  padding: 14px;
  border: 1px solid rgba(216, 180, 254, 0.14);
  border-radius: 16px;
  background: rgba(216, 180, 254, 0.06);
}

.meta-list dt {
  color: var(--color-muted);
  font-size: 12px;
}

.meta-list dd {
  margin: 5px 0 0;
  color: #fff;
  font-weight: 700;
}

.player-section {
  padding-top: 46px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #000;
}

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

.video-play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56));
}

.video-play-button span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 50%;
  color: #1b0628;
  background: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-500));
  box-shadow: var(--shadow-gold);
  font-size: 34px;
}

.video-shell.playing .video-play-button {
  display: none;
}

.player-note {
  position: absolute;
  left: 16px;
  bottom: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 36px;
}

.content-card {
  padding: 26px;
}

.content-card.full {
  grid-column: 1 / -1;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #e6d4fb;
  line-height: 1.9;
}

.ranking-list {
  padding: 12px;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 85, 247, 0.18), transparent 28rem),
    linear-gradient(180deg, rgba(18, 3, 29, 0.92), #050108);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--color-grape-300);
}

.site-footer p,
.site-footer li {
  color: var(--color-muted);
  line-height: 1.8;
}

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

.site-footer a:hover {
  color: var(--color-gold-300);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(189, 165, 215, 0.76);
  border-top: 1px solid var(--color-line);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: none;
  border-radius: 50%;
  color: #1b0628;
  background: linear-gradient(135deg, var(--color-grape-300), var(--color-gold-300));
  box-shadow: var(--shadow-gold);
  z-index: 40;
}

.back-to-top.visible {
  display: block;
}

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

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

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

  .hero-content,
  .two-column-layout,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

  .rank-panel {
    position: static;
  }

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

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-carousel {
    min-height: 760px;
  }

  .hero-content {
    padding: 56px 0 180px;
    gap: 24px;
  }

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

  .hero-thumb span {
    display: none;
  }

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

  .category-grid.compact,
  .category-grid.large,
  .detail-content-grid,
  .footer-grid,
  .filter-bar,
  .search-panel,
  .meta-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .movie-grid,
  .movie-grid.dense {
    grid-template-columns: 1fr;
  }

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

  .hero-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-thumb {
    justify-content: center;
  }

  .hero-thumb img {
    width: 34px;
    height: 48px;
  }

  .rank-row {
    grid-template-columns: 34px 48px minmax(0, 1fr) 38px;
  }
}
