:root {
  color-scheme: light;
  --bg: #fff7ed;
  --bg-soft: #ffffff;
  --panel: #ffffff;
  --panel-strong: #fff3e6;
  --text: #111827;
  --muted: #6b7280;
  --muted-strong: #374151;
  --line: #f1d6c6;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --pink: #ec4899;
  --purple: #a855f7;
  --blue: #3b82f6;
  --green: #10b981;
  --shadow: 0 24px 70px rgba(249, 115, 22, 0.16);
  --shadow-card: 0 16px 45px rgba(17, 24, 39, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.22), transparent 34rem),
    linear-gradient(180deg, #fff7ed 0%, #fffaf5 38%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.96), rgba(239, 68, 68, 0.96), rgba(236, 72, 153, 0.96));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.26);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--orange);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.18);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-search {
  display: flex;
  align-items: center;
  min-width: 300px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-search input,
.big-search input,
.filter-search,
.filter-select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: #ffffff;
}

.nav-search input {
  min-width: 0;
  padding: 10px 12px 10px 18px;
  color: #ffffff;
  background: transparent;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.nav-search button,
.big-search button,
.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.24);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-search button {
  color: var(--orange-dark);
  background: #ffffff;
  box-shadow: none;
}

.primary-button:hover,
.big-search button:hover,
.nav-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(249, 115, 22, 0.3);
}

.primary-button.small {
  display: inline-flex;
  padding: 9px 15px;
  font-size: 0.92rem;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-menu-button {
  display: none;
  border: 0;
  color: #ffffff;
  font-size: 1.8rem;
  background: transparent;
}

.hero-section {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 0;
}

.hero-slider {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-backdrop,
.detail-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
}

.hero-backdrop::after,
.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.54), rgba(249, 115, 22, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  align-self: center;
  padding: 70px;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-content h1,
.inner-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.5rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-content p {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 70px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.hero-dot.active {
  width: 64px;
  background: #ffffff;
}

.section-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.quick-search {
  padding-bottom: 18px;
}

.search-panel,
.inner-hero,
.category-overview-card,
.story-card,
.meta-card,
.ranking-panel,
.filter-bar {
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 24px;
  padding: 30px;
}

.search-panel h2,
.section-heading h2,
.story-card h2,
.meta-card h2,
.ranking-panel h2,
.category-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.search-panel p,
.inner-hero p,
.category-copy p,
.story-card p,
.movie-info p,
.detail-line {
  color: var(--muted);
  line-height: 1.8;
}

.big-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.big-search input {
  padding: 13px 18px;
  border-radius: 999px;
}

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

.section-heading.compact {
  align-items: center;
  margin-bottom: 18px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--orange-dark);
  font-weight: 900;
  background: #fff3e6;
  border: 1px solid rgba(249, 115, 22, 0.18);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.16);
}

.category-card span {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 950;
}

.category-card strong {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.7;
}

.category-thumbs {
  position: absolute;
  right: -16px;
  bottom: -18px;
  display: flex;
  gap: 8px;
  opacity: 0.66;
  transform: rotate(-8deg);
}

.category-thumbs img {
  width: 56px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fb923c, #ec4899);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
}

.rank-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.movie-info {
  padding: 18px;
}

.movie-meta-line {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.movie-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #fb923c;
}

.movie-info h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.movie-info h3 a:hover,
.category-copy h2 a:hover,
.meta-card a:hover {
  color: var(--orange-dark);
}

.movie-info p {
  min-height: 3.45em;
  margin: 0;
  font-size: 0.92rem;
}

.card-tags,
.detail-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-chip {
  color: var(--orange-dark);
  background: #fff3e6;
  border-color: rgba(249, 115, 22, 0.18);
}

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

.ranking-panel {
  padding: 24px;
}

.sticky-panel {
  position: sticky;
  top: 98px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 36px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #fff7ed;
  transition: background 0.25s ease, transform 0.25s ease;
}

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

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 950;
  background: var(--orange);
}

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

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

.rank-copy strong,
.rank-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.rank-score {
  color: var(--orange-dark);
  font-weight: 950;
}

.inner-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 54px;
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.9);
}

.inner-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.category-hero .breadcrumb,
.inner-hero .breadcrumb {
  color: var(--muted);
}

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

.category-overview-list {
  display: grid;
  gap: 22px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
}

.category-copy p {
  margin: 14px 0 18px;
}

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

.overview-posters a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff3e6;
}

.overview-posters img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.overview-posters span {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 8px 8px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(140px, 0.26fr));
  gap: 12px;
  padding: 14px;
  margin-bottom: 24px;
}

.filter-search,
.filter-select {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.empty-state {
  display: none;
  padding: 34px;
  text-align: center;
  color: var(--muted);
  border-radius: var(--radius-lg);
  background: #fff7ed;
  border: 1px dashed rgba(249, 115, 22, 0.28);
}

.empty-state.active {
  display: block;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 64px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  background: linear-gradient(135deg, #fb923c, #ec4899);
}

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

.detail-line {
  max-width: 760px;
  margin: 18px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.watch-section {
  padding-bottom: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #050505;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.22);
}

.movie-player,
.play-overlay,
.play-overlay img {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie-player {
  position: relative;
  z-index: 1;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #111827;
}

.play-overlay.hidden {
  display: none;
}

.play-overlay img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.play-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.22), transparent 20rem),
    rgba(0, 0, 0, 0.45);
}

.play-button {
  position: relative;
  z-index: 4;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 20px 56px rgba(249, 115, 22, 0.46);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 22px;
  align-items: start;
  padding-top: 28px;
}

.story-card,
.meta-card {
  padding: 26px;
}

.story-card p {
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.meta-card {
  grid-row: span 2;
}

.meta-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.meta-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5ddcc;
}

.meta-card dt {
  color: var(--muted);
}

.meta-card dd {
  margin: 0;
  text-align: right;
  font-weight: 850;
}

.site-footer {
  margin-top: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937 45%, #7c2d12);
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.7fr 0.7fr;
  gap: 36px;
  padding: 44px 0;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .nav-search {
    min-width: 260px;
  }

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

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

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

  .sticky-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 24px, 1240px);
    gap: 12px;
  }

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .nav-search {
    display: none;
    width: 100%;
  }

  .site-header.menu-open .nav-links,
  .site-header.menu-open .nav-search {
    display: flex;
  }

  .site-header.menu-open .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section,
  .section-shell,
  .inner-hero,
  .detail-shell {
    width: min(100% - 24px, 1240px);
  }

  .hero-slider {
    min-height: 610px;
    border-radius: 26px;
  }

  .hero-content {
    padding: 34px 26px 90px;
    align-self: end;
  }

  .hero-controls {
    left: 26px;
    bottom: 28px;
  }

  .search-panel,
  .filter-bar,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .big-search {
    border-radius: 22px;
    flex-direction: column;
  }

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

  .detail-grid {
    align-items: start;
  }

  .detail-poster {
    max-width: 260px;
  }

  .detail-copy h1,
  .inner-hero h1,
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .inner-hero,
  .category-overview-card,
  .story-card,
  .meta-card,
  .ranking-panel {
    padding: 24px;
  }

  .play-button {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .movie-grid,
  .movie-grid.slim,
  .overview-posters {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 30px 52px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }
}
