:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.74);
  --bg-card-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --blue: #2563eb;
  --pink: #ec4899;
  --yellow: #facc15;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(37, 99, 235, 0.2), transparent 32rem),
    linear-gradient(135deg, #020617 0%, #0f172a 42%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.94));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(37, 99, 235, 0.95));
  color: white;
  font-size: 18px;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.36);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 16px 18px;
  background: rgba(2, 6, 23, 0.98);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted-strong);
}

.mobile-nav a:hover {
  background: rgba(15, 23, 42, 0.9);
  color: white;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #020617;
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.58) 44%, rgba(2, 6, 23, 0.08) 100%),
    linear-gradient(0deg, #020617 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy {
  width: min(680px, 100%);
}

.hero-tags,
.detail-title-meta,
.crumbs,
.detail-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.detail-title-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: #cffafe;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

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

.hero p {
  margin: 0;
  max-width: 650px;
  color: var(--muted-strong);
  font-size: clamp(15px, 2vw, 18px);
}

.hero-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.hero-score strong,
.rating,
.rank-score {
  color: var(--yellow);
}

.hero-score span {
  color: var(--muted);
}

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

.btn,
.global-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.global-search button:hover {
  transform: translateY(-2px);
}

.btn-primary,
.global-search button {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  box-shadow: 0 18px 50px rgba(34, 211, 238, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: rgba(15, 23, 42, 0.62);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.58);
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.quick-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: -34px;
  padding: 24px;
  position: relative;
  z-index: 8;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search h2,
.section-heading h2,
.sub-hero h1,
.detail-title-card h1 {
  margin: 4px 0 0;
}

.global-search {
  display: flex;
  width: min(520px, 100%);
  gap: 12px;
}

.global-search input,
.filter-input-wrap input,
.filter-selects select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.62);
  color: white;
  outline: none;
}

.global-search input {
  min-height: 48px;
  padding: 0 16px;
}

.global-search input:focus,
.filter-input-wrap input:focus,
.filter-selects select:focus {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.page-stack {
  display: grid;
  gap: 56px;
  padding-block: 56px;
}

.content-section {
  display: grid;
  gap: 22px;
}

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

.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.section-more {
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

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

.movie-card-link {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 24px 70px rgba(34, 211, 238, 0.16);
}

.poster,
.category-cover,
.rank-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.3), transparent 30%),
    linear-gradient(135deg, #1e293b, #020617);
}

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

.poster > img,
.category-cover > img,
.rank-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.movie-card-link:hover .poster > img,
.category-card:hover .category-cover > img,
.rank-row a:hover .rank-thumb > img {
  transform: scale(1.08);
}

.poster-shade,
.category-cover span {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 48%);
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.9);
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card-link:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.poster-meta {
  position: absolute;
  top: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.72);
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.poster-region {
  left: 10px;
}

.poster-year {
  right: 10px;
}

.movie-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.movie-card-body strong {
  overflow: hidden;
  color: white;
  font-size: 16px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-meta,
.card-desc,
.card-bottom,
.filter-count,
.sub-hero p,
.site-footer p,
.info-list dt,
.rank-info small,
.rank-info em {
  color: var(--muted);
}

.card-meta,
.card-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.card-meta {
  -webkit-line-clamp: 1;
  font-size: 13px;
}

.card-desc {
  min-height: 42px;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.6;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

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

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

.category-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  min-height: 250px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.42);
}

.category-cover {
  height: 130px;
  border-radius: 16px;
}

.category-card strong {
  color: white;
  font-size: 18px;
}

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

.category-card small {
  font-size: 13px;
}

.sub-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 211, 238, 0.18), transparent 30rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96));
}

.sub-hero .container {
  padding-block: 64px;
}

.sub-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.sub-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 17px;
}

.crumbs,
.detail-crumbs {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs a,
.detail-crumbs a,
.info-list a {
  color: var(--cyan);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
}

.filter-input-wrap {
  position: relative;
}

.filter-input-wrap span {
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
}

.filter-input-wrap input {
  min-height: 48px;
  padding: 0 16px 0 44px;
}

.filter-selects {
  display: flex;
  gap: 12px;
}

.filter-selects select {
  min-height: 48px;
  min-width: 148px;
  padding: 0 12px;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 62px 76px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row a:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.42);
}

.rank-num {
  color: rgba(34, 211, 238, 0.86);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-thumb {
  width: 76px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

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

.rank-info strong {
  overflow: hidden;
  color: white;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  filter: blur(10px);
  transform: scale(1.08);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617, rgba(2, 6, 23, 0.62));
}

.detail-crumbs {
  position: relative;
  z-index: 2;
  padding-top: 74px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  padding-block: 34px 56px;
}

.detail-main {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-cover-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  cursor: pointer;
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.38);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-cover-button span {
  margin-left: 5px;
  font-size: 30px;
}

.player-cover-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.player-shell.is-playing .player-cover-button {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 12px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.7);
  color: var(--muted-strong);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.player-shell.is-playing .player-status {
  display: none;
}

.detail-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}

.detail-card {
  padding: 24px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: var(--muted-strong);
  white-space: pre-wrap;
}

.detail-title-card h1 {
  color: white;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.detail-title-card p {
  margin-top: 14px;
  font-size: 17px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: #cffafe;
  font-size: 13px;
  font-weight: 700;
}

.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.side-card {
  padding: 20px;
}

.poster-card {
  padding: 0;
  overflow: hidden;
}

.large-poster {
  aspect-ratio: 3 / 4;
}

.info-list {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px 12px;
  margin: 0;
}

.info-list dt,
.info-list dd {
  margin: 0;
}

.info-list dd {
  color: white;
}

.side-rank {
  display: grid;
  gap: 10px;
}

.side-link {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.38);
}

.side-link:hover {
  background: rgba(34, 211, 238, 0.12);
}

.side-link span {
  color: var(--cyan);
  font-weight: 900;
}

.side-link strong {
  overflow: hidden;
  color: var(--muted-strong);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-section {
  padding-bottom: 64px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 36px;
  padding-block: 42px;
}

.footer-brand {
  color: white;
  font-size: 22px;
  font-weight: 900;
}

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

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

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

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

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover {
  color: var(--cyan);
}

[data-card].is-hidden {
  display: none;
}

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

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

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

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

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

  .nav-toggle {
    display: block;
  }

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

  .hero,
  .hero-content {
    min-height: 68vh;
  }

  .hero-content {
    align-items: center;
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-search,
  .section-heading,
  .filter-panel,
  .global-search {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .filter-selects {
    flex-direction: column;
  }

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

  .category-grid,
  .category-grid-large,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rank-row a {
    grid-template-columns: 44px 62px 1fr;
  }

  .rank-score {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

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

  .brand-text small {
    display: none;
  }

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

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

  .card-desc {
    display: none;
  }

  .detail-card,
  .side-card {
    padding: 18px;
  }

  .player-cover-button {
    width: 68px;
    height: 68px;
  }

  .rank-row a {
    grid-template-columns: 34px 54px 1fr;
    gap: 10px;
  }

  .rank-num {
    font-size: 18px;
  }
}
