:root {
  --bg: #fff8ed;
  --paper: #ffffff;
  --paper-soft: #fff3d7;
  --ink: #3f2408;
  --muted: #7c5a2b;
  --line: #f4cf8b;
  --brand: #d97706;
  --brand-deep: #92400e;
  --brand-soft: #f59e0b;
  --shadow: 0 20px 50px rgba(146, 64, 14, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 34rem),
    linear-gradient(180deg, #fff8ed 0%, #fffaf4 52%, #fff7ea 100%);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.92));
  border-bottom: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--brand-deep);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #c2410c);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.34);
}

.brand-text {
  font-size: 24px;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #92400e, #ea580c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  color: #7c4a12;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, #d97706, #ea580c);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

.header-search {
  position: relative;
  width: min(280px, 28vw);
}

.search-input,
.page-filter,
.hero-filter {
  width: 100%;
  border: 1px solid rgba(245, 158, 11, 0.34);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-input:focus,
.page-filter:focus,
.hero-filter:focus {
  border-color: rgba(217, 119, 6, 0.8);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, 90vw);
  max-height: 430px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
}

.search-result-item:hover {
  background: #fff7ed;
}

.search-result-item img {
  width: 52px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.search-result-item strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}

.search-result-item span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #ffedd5;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--brand-deep);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 8px;
  border-radius: 18px;
  background: #fff7ed;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.02);
  background-size: cover;
  background-position: center;
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 237, 0.96));
}

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

.hero-copy {
  width: min(660px, 100%);
  padding: 44px;
  color: #fff7ed;
  background: linear-gradient(135deg, rgba(67, 20, 7, 0.78), rgba(146, 64, 14, 0.62));
  border: 1px solid rgba(255, 237, 213, 0.2);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  color: #78350f;
  background: #fef3c7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-copy h2 + h2,
.hero-copy h1 + h2 {
  margin-top: 10px;
  font-size: clamp(22px, 3vw, 32px);
  color: #fde68a;
}

.hero-copy p {
  margin: 18px 0 0;
  color: #ffedd5;
  font-size: 17px;
  line-height: 1.8;
}

.hero-tags,
.tag-row,
.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

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

.hero-tags span,
.tag-row span,
.movie-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  padding: 7px 10px;
  color: #fffbeb;
  background: rgba(255, 255, 255, 0.16);
}

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

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

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.34);
}

.btn.ghost {
  color: #78350f;
  background: #fff7ed;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateX(-50%);
}

.hero-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-category-pills a {
  padding: 9px 12px;
  color: #7c2d12;
  background: rgba(255, 247, 237, 0.88);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

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

.search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 24px;
  background: linear-gradient(135deg, #fff, #fffbeb);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-panel h2,
.section-heading h2,
.panel-title span,
.prose-section h2 {
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.search-panel p,
.section-heading span,
.category-overview-card p,
.category-card p,
.prose-section p,
.detail-one-line {
  color: var(--muted);
  line-height: 1.8;
}

.search-panel .page-filter {
  width: min(420px, 100%);
}

.page-section,
.split-section,
.ranking-list {
  margin-top: 58px;
}

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

.section-heading span {
  display: block;
  margin-bottom: 5px;
  color: #d97706;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-more,
.text-link,
.panel-title a {
  color: #c2410c;
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(146, 64, 14, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #78350f;
}

.poster-link img,
.category-card img,
.related-card img,
.ranking-row img,
.ranking-card-poster img,
.detail-poster img,
.category-thumb-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .poster-link img,
.category-card:hover img,
.related-card:hover img,
.ranking-card:hover img {
  transform: scale(1.08);
}

.poster-link::after,
.category-card::after,
.related-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.poster-year {
  right: 10px;
  top: 10px;
  color: #78350f;
  background: #fef3c7;
}

.rank-badge {
  left: 10px;
  top: 10px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #c2410c);
}

.card-content {
  padding: 14px;
}

.card-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
}

.card-content h3 a:hover {
  color: #c2410c;
}

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

.movie-meta span {
  padding: 5px 8px;
  color: #7c2d12;
  background: #ffedd5;
}

.tag-row {
  margin-top: 10px;
}

.tag-row span {
  padding: 5px 8px;
  color: #92400e;
  background: #fef3c7;
}

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

.category-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card span {
  font-size: 24px;
  font-weight: 950;
}

.category-card p {
  margin: 8px 0 0;
  color: #ffedd5;
}

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

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

.movie-card.compact {
  display: grid;
  grid-template-columns: 112px 1fr;
}

.movie-card.compact .poster-link {
  min-height: 160px;
  aspect-ratio: auto;
}

.movie-card.compact .card-content p {
  min-height: auto;
}

.ranking-panel,
.prose-section,
.player-section,
.detail-layout,
.subpage-hero,
.category-overview-card,
.ranking-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 94px;
  padding: 20px;
}

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

.panel-title span {
  font-size: 24px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 34px 54px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
}

.ranking-row:hover {
  background: #fff7ed;
}

.ranking-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 10px;
  font-weight: 950;
}

.ranking-row img {
  width: 54px;
  height: 72px;
  border-radius: 12px;
}

.ranking-title {
  font-size: 14px;
  font-weight: 900;
}

.ranking-score {
  color: #c2410c;
  font-weight: 950;
}

.site-footer {
  margin-top: 80px;
  color: #ffedd5;
  background: linear-gradient(135deg, #431407, #78350f 48%, #9a3412);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  padding: 44px 0;
}

.footer-brand {
  color: #fde68a;
  font-size: 24px;
}

.site-footer p {
  max-width: 520px;
  color: #fed7aa;
  line-height: 1.8;
}

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

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #fed7aa;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: #fef3c7;
  border-top: 1px solid rgba(254, 243, 199, 0.18);
}

.subpage-main,
.detail-main {
  padding-top: 42px;
}

.subpage-hero {
  padding: 42px;
  background:
    radial-gradient(circle at right top, rgba(251, 191, 36, 0.24), transparent 24rem),
    linear-gradient(135deg, #fff, #fff7ed);
}

.subpage-hero h1 {
  margin: 16px 0 0;
  color: var(--brand-deep);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-filter {
  margin-top: 20px;
  max-width: 520px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 18px;
}

.category-thumb-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: #78350f;
}

.category-thumb-stack img {
  aspect-ratio: 1 / 1;
}

.category-overview-card h2 {
  margin: 8px 0 10px;
  color: var(--brand-deep);
  font-size: 26px;
  font-weight: 950;
}

.ranking-list {
  display: grid;
  gap: 16px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px;
}

.ranking-card-poster {
  position: relative;
  overflow: hidden;
  height: 158px;
  border-radius: 18px;
}

.ranking-card-poster span {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #c2410c);
  border-radius: 12px;
  font-weight: 950;
}

.ranking-card-body h2 {
  margin: 6px 0 10px;
  color: var(--brand-deep);
  font-size: 24px;
  font-weight: 950;
}

.ranking-card-body p {
  color: var(--muted);
  line-height: 1.75;
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  padding: 28px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(146, 64, 14, 0.18);
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #c2410c;
  font-weight: 900;
}

.detail-info h1 {
  margin: 18px 0 14px;
  color: var(--brand-deep);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-meta span {
  padding: 7px 10px;
  color: #7c2d12;
  background: #ffedd5;
}

.detail-one-line {
  margin-top: 18px;
  font-size: 18px;
}

.detail-tags {
  margin-top: 18px;
}

.player-section {
  margin-top: 36px;
  padding: 22px;
}

.player-section h2 {
  margin: 0 0 16px;
  color: var(--brand-deep);
  font-size: 28px;
  font-weight: 950;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 22px;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
  cursor: pointer;
}

.player-cover[hidden] {
  display: none;
}

.play-icon {
  position: relative;
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.4);
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
}

.player-cover strong {
  max-width: 80%;
  font-size: clamp(20px, 4vw, 36px);
  text-align: center;
}

.prose-section {
  margin-top: 36px;
  padding: 30px;
}

.prose-section h2 {
  margin-top: 26px;
  font-size: 28px;
}

.prose-section h2:first-child {
  margin-top: 0;
}

.prose-section p {
  font-size: 17px;
}

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

.related-card a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #78350f;
  box-shadow: 0 14px 28px rgba(146, 64, 14, 0.12);
}

.related-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-weight: 950;
  line-height: 1.35;
}

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .header-search {
    margin-left: auto;
    width: min(360px, 42vw);
  }

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

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

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

  .ranking-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand-text {
    font-size: 19px;
  }

  .header-search {
    order: 3;
    width: 100%;
    margin: 0 0 12px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

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

  .hero-copy {
    padding: 26px;
    border-radius: 24px;
  }

  .hero-controls {
    flex-direction: column;
    align-items: flex-start;
    bottom: 20px;
  }

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

  .search-panel .page-filter {
    width: 100%;
  }

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

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

  .category-overview-card,
  .ranking-card {
    grid-template-columns: 1fr;
  }

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

  .subpage-hero,
  .detail-layout,
  .prose-section,
  .player-section {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .movie-grid,
  .featured-grid,
  .movie-list-grid,
  .category-grid,
  .category-overview-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.compact {
    grid-template-columns: 104px 1fr;
  }

  .hero-category-pills a:nth-child(n + 5) {
    display: none;
  }

  .ranking-row {
    grid-template-columns: 28px 46px 1fr;
  }

  .ranking-score {
    display: none;
  }
}
