:root {
  --color-bg: #fff7ed;
  --color-bg-soft: #fffbeb;
  --color-card: #ffffff;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-line: #fde68a;
  --color-primary: #d97706;
  --color-primary-dark: #92400e;
  --color-accent: #f97316;
  --color-dark: #0f172a;
  --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 48%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #f59e0b, #7c2d12);
}

img.is-missing {
  opacity: 0.92;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.92), rgba(124, 45, 18, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 12px, transparent 12px 24px);
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.3);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  color: #4b5563;
  transition: color 180ms ease;
}

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

.nav-link.is-active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: #fff7ed;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-primary-dark);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 22px;
  background: #ffffff;
  border-top: 1px solid var(--color-line);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 10px 12px;
  color: #374151;
  font-weight: 700;
  border-radius: 12px;
}

.mobile-nav-link:hover {
  color: var(--color-primary-dark);
  background: #fffbeb;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--color-dark);
}

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

.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay,
.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.18)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.85), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 80px;
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.hero-desc {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 251, 235, 0.9);
  border: 1px solid rgba(251, 191, 36, 0.5);
  border-radius: 999px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.32);
}

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

.btn-outline {
  color: var(--color-primary-dark);
  background: #ffffff;
  border: 1px solid var(--color-line);
}

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

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

.hero-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transition: width 200ms ease, background 200ms ease;
}

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

.search-panel {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  margin-top: -54px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.search-panel h2,
.section-heading h2,
.sub-hero h1,
.detail-main h1 {
  margin: 0;
  color: #111827;
  letter-spacing: -0.04em;
}

.search-panel p,
.section-heading p,
.sub-hero p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

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

.home-search input,
.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #fcd34d;
  border-radius: 14px;
  outline: none;
}

.home-search input:focus,
.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.page-section {
  padding: 70px 0;
}

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

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

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

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

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

.movie-card {
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(120, 53, 15, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.movie-card:hover {
  border-color: rgba(245, 158, 11, 0.78);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5.4;
  overflow: hidden;
  background: linear-gradient(135deg, #f59e0b, #7c2d12);
}

.movie-cover img,
.rank-thumb img,
.poster-strip img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

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

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(217, 119, 6, 0.9);
  border-radius: 999px;
}

.movie-info {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover .movie-title,
.rank-title:hover {
  color: var(--color-primary-dark);
}

.movie-line {
  display: -webkit-box;
  min-height: 44px;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #78716c;
  font-size: 12px;
  font-weight: 800;
}

.movie-meta span {
  padding: 3px 8px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
}

.movie-card-compact .movie-info {
  padding: 14px;
}

.movie-card-compact .movie-title {
  min-height: 45px;
  font-size: 15px;
}

.movie-card-compact .movie-line {
  min-height: 40px;
  font-size: 13px;
}

.category-feature-list {
  display: grid;
  gap: 28px;
}

.category-feature,
.category-overview-card,
.content-card,
.player-block {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(120, 53, 15, 0.06);
}

.category-feature-head,
.category-overview-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.category-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 16px;
}

.category-feature h3,
.category-overview-card h2 {
  margin: 0;
  font-size: 24px;
}

.category-feature p,
.category-overview-card p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.category-feature-head a {
  color: var(--color-primary-dark);
  font-weight: 900;
}

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

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

.rank-list.large {
  grid-template-columns: 1fr;
}

.rank-card {
  display: grid;
  grid-template-columns: auto 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-md);
}

.rank-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 14px;
}

.rank-thumb {
  display: block;
  width: 110px;
  height: 82px;
  overflow: hidden;
  background: #fef3c7;
  border-radius: 12px;
}

.rank-title {
  color: #111827;
  font-size: 17px;
  font-weight: 900;
}

.rank-content p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sub-hero {
  padding: 96px 0 74px;
  color: #111827;
  background:
    linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.84)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.25), transparent 24rem);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.sub-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.sub-hero p {
  max-width: 860px;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-stats span,
.category-stats span,
.source-label {
  display: inline-flex;
  padding: 6px 12px;
  color: #92400e;
  font-size: 13px;
  font-weight: 900;
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 999px;
}

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

.category-stats {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.poster-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.poster-strip a {
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  border-radius: 12px;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.9fr auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 18px;
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 22px rgba(120, 53, 15, 0.05);
}

.filter-toolbar label {
  display: grid;
  gap: 6px;
  color: #78350f;
  font-size: 13px;
  font-weight: 900;
}

.global-search-toolbar {
  grid-template-columns: 1.6fr 0.8fr 0.9fr auto auto;
}

.result-count {
  margin: 0 0 18px;
  color: #78350f;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-dark);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fbbf24;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 4 / 5.6;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.detail-main h1 {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-content {
  margin-top: -60px;
}

.player-block {
  position: relative;
  z-index: 4;
}

.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.player-title-row h2 {
  margin: 0;
  font-size: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #020617;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.28);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  color: #ffffff;
  cursor: pointer;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.38), rgba(2, 6, 23, 0.54));
  border: 0;
}

.player-overlay span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  font-size: 34px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.32);
}

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

.player-message {
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-align: center;
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  margin-top: 28px;
}

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

.content-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
}

.detail-meta-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.detail-meta-card dt {
  color: #92400e;
  font-weight: 900;
}

.detail-meta-card dd {
  margin: 0;
  color: #374151;
}

.review-card {
  margin-top: 24px;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  margin-top: 60px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #1e293b, #0f172a 70%, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 52px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
}

.footer-about p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #94a3b8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

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

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px 16px;
  color: #94a3b8;
  font-size: 13px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

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

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

  .menu-toggle {
    display: block;
  }

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

  .compact-grid,
  .poster-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-overview-grid,
  .rank-list,
  .info-grid,
  .search-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-toolbar,
  .global-search-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 46px;
  }

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

  .hero-desc,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .search-panel {
    padding: 20px;
    margin-top: -36px;
  }

  .home-search,
  .section-heading,
  .player-title-row,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .page-section {
    padding: 46px 0;
  }

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

  .movie-title {
    min-height: auto;
  }

  .rank-card {
    grid-template-columns: auto 82px 1fr;
    gap: 12px;
  }

  .rank-thumb {
    width: 82px;
    height: 68px;
  }

  .filter-toolbar,
  .global-search-toolbar {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: 210px;
  }

  .detail-hero-inner {
    padding: 42px 0 90px;
  }

  .detail-content {
    margin-top: -72px;
  }

  .detail-meta-card dl {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .compact-grid,
  .mini-grid,
  .poster-strip {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 1fr;
  }

  .rank-number {
    width: 38px;
    height: 38px;
  }

  .rank-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
