:root {
  --red: #dc2626;
  --rose: #e11d48;
  --orange: #ea580c;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fee2e2;
  --soft: #fff1f2;
  --paper: #ffffff;
  --shadow: 0 22px 55px rgba(127, 29, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 25px rgba(127, 29, 29, 0.08);
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--rose));
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.28);
  font-size: 16px;
}

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

.brand-text strong,
.footer-brand strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
}

.desktop-nav a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: #374151;
  font-weight: 650;
  padding: 10px 2px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-dropdown:hover > button {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
}

.dropdown-menu a:hover {
  background: #fff1f2;
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(330px, 30vw);
}

.top-search input,
.mobile-search input,
.page-search {
  width: 100%;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--ink);
  outline: none;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.page-search:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.top-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--rose));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--red);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-panel-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 10px 0;
  color: #374151;
  font-weight: 650;
}

.mobile-channel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  padding-top: 6px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: linear-gradient(135deg, #fff1f2, #ffe4e6 48%, #fff7ed);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(rgba(220, 38, 38, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(220, 38, 38, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-orb {
  position: absolute;
  color: rgba(244, 63, 94, 0.24);
  font-weight: 900;
  user-select: none;
}

.hero-orb-a {
  top: 130px;
  left: 7%;
  font-size: 56px;
  animation: floaty 4s ease-in-out infinite;
}

.hero-orb-b {
  bottom: 120px;
  right: 12%;
  font-size: 80px;
  animation: pulse 3s ease-in-out infinite;
}

.hero-orb-c {
  top: 210px;
  right: 25%;
  font-size: 42px;
  animation: floaty 4.6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.18;
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-badge,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 16px;
  color: #374151;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(127, 29, 29, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: block;
  margin-top: 10px;
  font-size: clamp(30px, 4.6vw, 54px);
  background: linear-gradient(90deg, var(--red), var(--rose));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 19px;
  max-width: 620px;
}

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

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

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--rose));
  box-shadow: 0 15px 30px rgba(225, 29, 72, 0.24);
}

.btn.secondary,
.btn.muted {
  color: #374151;
  background: #fff;
  box-shadow: 0 12px 25px rgba(127, 29, 29, 0.1);
}

.btn.muted {
  background: #f3f4f6;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics span {
  padding: 8px 13px;
  border: 1px solid rgba(244, 63, 94, 0.16);
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(254, 205, 211, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-slides {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
}

.hero-slide-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.15), transparent);
}

.hero-slide-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.hero-slide-copy strong,
.hero-slide-copy em {
  display: block;
}

.hero-slide-copy strong {
  font-size: 24px;
  line-height: 1.2;
}

.hero-slide-copy em {
  margin-top: 8px;
  color: #fecdd3;
  font-style: normal;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--rose));
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fecdd3;
}

.hero-dot.active {
  width: 28px;
  background: var(--red);
}

.section {
  padding: 72px 0;
}

.section.white {
  background: #fff;
}

.section.soft {
  background: linear-gradient(135deg, #fff7f7, #fff1f2);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: #fecdd3;
  box-shadow: 0 24px 45px rgba(127, 29, 29, 0.14);
}

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

.poster-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease;
}

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

.type-pill,
.rank-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.type-pill {
  left: 14px;
}

.rank-badge {
  right: 14px;
}

.hover-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  font-size: 48px;
  transition: opacity 0.25s ease;
}

.movie-card:hover .hover-play {
  opacity: 1;
}

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

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.movie-card h3 a:hover {
  color: var(--red);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border-radius: 999px;
  padding: 4px 9px;
  color: #991b1b;
  background: #fff1f2;
  font-size: 12px;
  font-weight: 700;
}

.movie-card.compact h3 {
  font-size: 16px;
}

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

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

.category-tile,
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(127, 29, 29, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-tile {
  min-height: 190px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.category-tile::after,
.category-card-shade {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(127, 29, 29, 0.88), rgba(127, 29, 29, 0.15));
}

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 1;
  color: #fff;
}

.category-tile span {
  font-size: 22px;
  font-weight: 900;
}

.category-tile small {
  display: block;
  margin-top: 8px;
  color: #ffe4e6;
}

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

.ranking-panel,
.article-card,
.player-card {
  border: 1px solid #fee2e2;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ranking-panel {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.panel-title span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.panel-title h2 {
  margin: 4px 0 18px;
  font-size: 28px;
}

.rank-row {
  display: grid;
  grid-template-columns: 34px 56px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: #fff1f2;
  transform: translateX(3px);
}

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

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

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info em {
  display: block;
}

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

.rank-info em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.rank-arrow {
  color: #f43f5e;
  font-size: 26px;
}

.rank-more,
.center-action a {
  display: inline-flex;
  margin-top: 18px;
}

.center-action {
  text-align: center;
  margin-top: 30px;
}

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

.page-hero.slim {
  padding: 80px 0 64px;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid #fee2e2;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(127, 29, 29, 0.08);
}

.filter-search-wrap {
  margin-bottom: 14px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #991b1b;
  background: #fff1f2;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--rose));
}

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

.category-card {
  aspect-ratio: 16 / 10;
}

.category-card img {
  height: 100%;
  object-fit: cover;
}

.category-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  z-index: 1;
}

.category-card-copy strong,
.category-card-copy em {
  display: block;
}

.category-card-copy strong {
  font-size: 26px;
  font-weight: 900;
}

.category-card-copy em {
  margin-top: 8px;
  color: #ffe4e6;
  font-style: normal;
}

.full-rank-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

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

.detail-top {
  padding: 54px 0 60px;
  background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.detail-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #fff;
}

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

.detail-type {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--red);
  background: #fff;
  font-weight: 900;
}

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #6b7280;
  font-weight: 750;
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.75);
}

.detail-one-line {
  max-width: 820px;
  color: #4b5563;
  font-size: 19px;
}

.detail-tags {
  margin: 20px 0 24px;
}

.player-section {
  background: #111827;
}

.player-card {
  padding: 16px;
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

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

.player-video {
  height: 100%;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}

.player.started .player-cover {
  display: none;
  pointer-events: none;
}

.play-circle {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--rose));
  box-shadow: 0 18px 42px rgba(225, 29, 72, 0.4);
  font-size: 32px;
  padding-left: 5px;
}

.player-cover strong {
  font-size: 24px;
}

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

.article-card {
  padding: 30px;
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

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

.site-footer {
  background: linear-gradient(180deg, #fff1f2, #fff);
  border-top: 1px solid #fee2e2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 28px;
  padding: 46px 0;
}

.site-footer p {
  color: var(--muted);
}

.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid #fee2e2;
  padding: 18px 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

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

@media (max-width: 1040px) {
  .desktop-nav,
  .top-search {
    display: none;
  }
  .nav-shell {
    justify-content: space-between;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-panel.open {
    display: block;
  }
  .hero-grid,
  .two-column,
  .detail-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 120px 0 64px;
  }
  .hero-stage {
    max-width: 420px;
  }
  .ranking-panel {
    position: static;
  }
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 1180px);
  }
  .brand-text strong {
    font-size: 18px;
  }
  .hero-copy h1 {
    font-size: 42px;
  }
  .section {
    padding: 48px 0;
  }
  .movie-grid,
  .feature-cards,
  .category-grid,
  .category-overview-grid,
  .full-rank-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .movie-card-body {
    padding: 12px;
  }
  .movie-card p {
    min-height: 40px;
  }
  .detail-poster {
    max-width: 260px;
  }
  .article-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .feature-cards,
  .category-grid,
  .category-overview-grid,
  .full-rank-list,
  .footer-grid,
  .mobile-channel-list {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .rank-row {
    grid-template-columns: 30px 52px minmax(0, 1fr) 14px;
  }
}
