:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-panel: rgba(15, 23, 42, 0.78);
  --line: rgba(148, 163, 184, 0.2);
  --text: #f8fafc;
  --muted: #94a3b8;
  --blue: #38bdf8;
  --blue-deep: #2563eb;
  --purple: #a855f7;
  --gold: #facc15;
  --radius: 22px;
  --shadow: 0 24px 90px rgba(15, 23, 42, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 99, 235, 0.35), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(168, 85, 247, 0.25), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 44%, #172554 100%);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #020617;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.32);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 22px;
  color: #fff;
}

.logo-text small {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(125, 211, 252, 0.85);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.nav-link,
.mobile-link {
  color: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.nav-link {
  padding: 10px 13px;
  white-space: nowrap;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-search {
  width: min(330px, 30vw);
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.catalog-tools input,
.catalog-tools select {
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

.header-search input {
  min-width: 0;
  flex: 1;
  padding: 11px 0 11px 16px;
}

.header-search button {
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), #7c3aed);
  border: 0;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 2px;
}

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

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

.mobile-link {
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.66);
}

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

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

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.72) 46%, rgba(15, 23, 42, 0.2) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.18) 44%, rgba(30, 64, 175, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.hero-copy {
  width: min(760px, 100%);
  animation: fadeUp 0.8s ease both;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.24);
}

.hero-title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-title span {
  display: block;
  margin-top: 12px;
  color: var(--blue);
}

.hero-desc {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

.hero-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-meta span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), #7c3aed);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.32);
}

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

.btn-link {
  color: var(--blue);
}

.hero-tabs {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  width: min(1440px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-dot {
  min-height: 70px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-dot span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-weight: 900;
}

.hero-dot.is-active,
.hero-dot:hover {
  color: #fff;
  border-color: rgba(56, 189, 248, 0.46);
  background: rgba(37, 99, 235, 0.32);
}

.section,
.page-hero,
.breadcrumb,
.player-layout,
.site-footer {
  width: min(1440px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 74px 0;
}

.section-dark {
  background: transparent;
}

.section-blue {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1440px) / 2));
  padding-right: max(16px, calc((100% - 1440px) / 2));
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(30, 64, 175, 0.26));
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.section-head,
.category-overview-head,
.panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2,
.category-overview-head h2,
.panel-head h2,
.article-section h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.section-head a,
.panel-head a {
  color: var(--blue);
  font-weight: 700;
}

.inline-head {
  justify-content: flex-start;
}

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

.movie-card {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(30, 41, 59, 0.92);
}

.movie-cover-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .movie-poster {
  transform: scale(1.06);
  filter: brightness(0.82);
}

.movie-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  color: #020617;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: var(--gold);
}

.movie-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.86);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.38);
}

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

.movie-card-title {
  display: -webkit-box;
  min-height: 48px;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-title:hover {
  color: var(--blue);
}

.movie-card-meta,
.movie-card-genre,
.movie-card-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.movie-card-genre {
  color: rgba(125, 211, 252, 0.86);
}

.movie-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 206px;
}

.movie-card-wide .movie-cover-link {
  aspect-ratio: auto;
  height: 100%;
}

.movie-card-wide .movie-card-title {
  min-height: auto;
  font-size: 20px;
}

.movie-card-small {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 138px;
}

.movie-card-small .movie-cover-link {
  aspect-ratio: auto;
  min-height: 138px;
}

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

.movie-card-small .movie-card-title {
  min-height: auto;
  font-size: 15px;
}

.movie-card-small .movie-card-desc,
.movie-card-small .movie-play,
.movie-card-small .movie-badge {
  display: none;
}

.split-layout {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 0.9fr);
  gap: 28px;
}

.wide-list {
  display: grid;
  gap: 18px;
}

.rank-panel,
.category-card,
.category-overview-block,
.detail-panel,
.article-section,
.catalog-tools {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rank-panel {
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 98px;
}

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

.rank-list.large {
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 44px 58px 1fr 20px;
  align-items: center;
  gap: 13px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.32);
  border: 1px solid rgba(148, 163, 184, 0.08);
  transition: background 0.24s ease, transform 0.24s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: rgba(30, 64, 175, 0.25);
}

.rank-number {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

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

.rank-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rank-info strong {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info small {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-arrow {
  color: var(--blue);
  font-size: 28px;
}

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

.category-card {
  padding: 22px;
  min-height: 210px;
}

.category-card-main span {
  display: block;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.category-card-main strong {
  display: block;
  margin-top: 12px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.category-card-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-card-links a {
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-card-links a:hover {
  color: var(--blue);
}

.page-main,
.detail-main {
  padding-top: 28px;
}

.page-hero {
  position: relative;
  margin-top: 24px;
  padding: 70px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.35), transparent 22rem),
    radial-gradient(circle at 86% 24%, rgba(168, 85, 247, 0.28), transparent 24rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.55));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 12px 0 0;
  max-width: 900px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.category-overview-block {
  width: min(1440px, calc(100% - 32px));
  margin: 28px auto;
  padding: 26px;
}

.category-overview-head p {
  max-width: 900px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px 180px;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.catalog-tools input,
.catalog-tools select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.catalog-tools select option {
  color: #0f172a;
}

.movie-card.is-hidden {
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(360px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

.movie-player,
.player-cover,
.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-player {
  z-index: 1;
  object-fit: contain;
  background: #000;
}

.player-cover {
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: #000;
  cursor: pointer;
}

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

.player-cover img {
  object-fit: cover;
  opacity: 0.58;
  filter: blur(1px) saturate(1.05);
}

.player-start {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  color: #fff;
  font-size: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(168, 85, 247, 0.95));
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.52);
}

.detail-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
}

.detail-poster {
  width: 150px;
  height: 225px;
  object-fit: cover;
  border-radius: 18px;
}

.detail-info h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 900;
}

.detail-one-line {
  margin: 14px 0 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.75;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.detail-meta div {
  padding: 10px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.34);
}

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

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

.article-section {
  padding: 34px;
  margin-top: 28px;
}

.article-section h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 16px;
}

.article-section h2 + p {
  margin: 0 0 28px;
}

.article-section p {
  color: rgba(226, 232, 240, 0.9);
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
}

.related-section {
  margin-top: 28px;
}

.site-footer {
  padding: 56px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
  line-height: 1.75;
}

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

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

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

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

.footer-bottom {
  margin-top: 34px;
  padding: 20px 0 26px;
  color: rgba(148, 163, 184, 0.72);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .mobile-menu-button {
    display: block;
  }

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

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

  .rank-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .header-search {
    display: none;
  }

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

  .hero-content {
    align-items: flex-start;
    padding-top: 120px;
  }

  .hero-tabs {
    grid-template-columns: 1fr;
    max-height: 240px;
    overflow: auto;
  }

  .hero-dot {
    min-height: 54px;
  }

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

  .movie-card-wide,
  .movie-card-small,
  .detail-panel {
    grid-template-columns: 112px 1fr;
  }

  .movie-card-wide .movie-cover-link,
  .movie-card-small .movie-cover-link {
    min-height: 158px;
  }

  .page-hero {
    padding: 44px 24px;
  }

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

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

@media (max-width: 560px) {
  .logo-text strong {
    font-size: 18px;
  }

  .logo-text small {
    display: none;
  }

  .hero-slider {
    min-height: 680px;
  }

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

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .movie-grid,
  .category-grid,
  .small-card-grid {
    grid-template-columns: 1fr;
  }

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

  .movie-card .movie-cover-link {
    aspect-ratio: auto;
    min-height: 170px;
  }

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

  .detail-poster {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
  }

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

  .rank-row {
    grid-template-columns: 36px 50px 1fr 14px;
  }
}
