:root {
  --bg-start: #fff7ed;
  --bg-end: #fffbeb;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-soft: #ffedd5;
  --amber: #f59e0b;
  --dark: #111827;
  --card: #ffffff;
  --shadow: 0 10px 24px rgba(17, 24, 39, 0.09);
  --shadow-soft: 0 8px 18px rgba(249, 115, 22, 0.12);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, #fffbeb 0%, #fff7ed 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(194, 65, 12, 0.08);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #1f2937;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--amber) 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08);
}

.brand-text {
  font-size: 20px;
  white-space: nowrap;
}

.header-search {
  display: flex;
  flex: 1;
  max-width: 500px;
  gap: 8px;
}

.header-search label,
.mobile-search {
  flex: 1;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  outline: none;
  color: var(--text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.header-search button,
.mobile-search button,
.filter-panel button,
.primary-button {
  border: 0;
  color: #ffffff;
  background: var(--brand);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.filter-panel button:hover,
.primary-button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #374151;
}

.nav-link {
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-dark);
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  background: var(--brand-soft);
  color: #9a3412;
  font-size: 22px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: #fff7ed;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

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

.mobile-nav a {
  padding: 10px 4px;
  font-weight: 700;
  color: #374151;
}

.mobile-category-link {
  color: #9a3412 !important;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  color: #ffffff;
}

.hero-label,
.section-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.88);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #c2410c;
  background: #ffedd5;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags .tag-pill {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.82);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 32px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--brand);
}

.quick-entry {
  background: rgba(255, 247, 237, 0.88);
  border-bottom: 1px solid var(--line);
}

.quick-entry-inner {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
}

.quick-entry span {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 13px;
}

.quick-entry strong {
  display: block;
  margin-top: 4px;
}

.quick-entry nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-entry a,
.section-more {
  border-radius: 999px;
  padding: 9px 14px;
  color: #9a3412;
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quick-entry a:hover,
.section-more:hover {
  color: #ffffff;
  border-color: var(--brand);
  background: var(--brand);
  transform: translateY(-1px);
}

.main-stack,
.page-shell {
  padding: 48px 0;
}

.content-section {
  margin-bottom: 60px;
}

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

.section-heading h2 {
  margin: 10px 0 6px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.16);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #7c2d12 100%);
}

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

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

.card-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.movie-card:hover .card-shade {
  background: rgba(0, 0, 0, 0.32);
}

.play-bubble {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.74);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.movie-card:hover .play-bubble {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.year-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 8px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  display: block;
  padding: 14px;
}

.card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
  color: var(--brand-dark);
}

.card-body em {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.horizontal-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
}

.scroll-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 40px 86px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  padding: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover,
.ranking-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.14);
}

.rank-number,
.ranking-index {
  color: var(--brand);
  font-weight: 900;
  font-size: 22px;
  text-align: center;
}

.rank-row img,
.ranking-item img {
  width: 86px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  background: #111827;
}

.rank-row strong,
.ranking-text strong {
  display: block;
  color: #1f2937;
  font-weight: 800;
}

.rank-row em,
.ranking-text em,
.ranking-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  border-radius: 24px;
  padding: clamp(32px, 6vw, 58px);
  margin-bottom: 32px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.96), rgba(124, 45, 18, 0.96)), linear-gradient(135deg, #111827, #7c2d12);
  box-shadow: var(--shadow);
}

.simple-hero h1,
.category-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
}

.simple-hero p,
.category-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

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

.breadcrumb a {
  color: #c2410c;
  font-weight: 700;
}

.breadcrumb.dark {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb.dark a {
  color: #fed7aa;
}

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

.category-card-large a {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 190px;
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card-large a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}

.category-cover-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.category-cover-mosaic img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  background: #111827;
}

.category-card-large h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.category-card-large p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.category-card-large span {
  color: var(--brand-dark);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(130px, 1fr)) minmax(140px, 1fr) auto;
  gap: 14px;
  align-items: end;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.ranking-item {
  display: grid;
  grid-template-columns: 54px 120px 1fr auto;
  gap: 16px;
  align-items: center;
  border-radius: 16px;
  padding: 12px 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-action {
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  background: var(--brand);
  font-weight: 800;
}

.player-section {
  padding: 28px 0 38px;
  background: #111827;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  text-indent: 5px;
}

.video-shell.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

.player-controls button {
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transition: color 0.2s ease, background 0.2s ease;
}

.player-controls button:hover {
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.24);
}

.player-controls input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.detail-content {
  padding: 42px 0 20px;
}

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

.detail-main-card,
.detail-side-card {
  border-radius: 18px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-main-card h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.18;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-row span {
  border-radius: 10px;
  padding: 7px 10px;
  color: #4b5563;
  background: #f9fafb;
  font-size: 14px;
  font-weight: 700;
}

.detail-tags {
  margin-bottom: 28px;
}

.detail-main-card section {
  margin-top: 28px;
}

.detail-main-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-main-card p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  white-space: pre-wrap;
}

.detail-side-card {
  position: sticky;
  top: 92px;
}

.detail-side-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #111827;
}

.full-button {
  display: flex;
  justify-content: center;
  text-align: center;
}

.related-section {
  padding: 18px 0 60px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
  margin-top: 28px;
  padding: 42px 0 24px;
}

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

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

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer p {
  color: #d1d5db;
  line-height: 1.7;
}

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

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

.copyright {
  width: min(100% - 32px, 1280px);
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 14px;
}

[data-card].is-hidden {
  display: none !important;
}

.poster-frame.is-missing img,
.category-cover-mosaic img.is-missing,
.rank-row img.is-missing,
.ranking-item img.is-missing,
.detail-side-card img.is-missing,
.hero-slide img.is-missing {
  opacity: 0;
}

@media (max-width: 1100px) {
  .movie-grid,
  .compact-grid,
  .search-page .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 820px) {
  .header-search,
  .desktop-nav {
    display: none;
  }

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

  .hero {
    height: 560px;
  }

  .hero-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.86) 100%);
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 74px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-entry-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

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

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

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

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

  .ranking-item {
    grid-template-columns: 42px 88px 1fr;
  }

  .ranking-action {
    display: none;
  }

  .player-controls {
    grid-template-columns: auto 1fr auto;
  }

  .player-controls button[data-player-action="mute"],
  .player-controls button[data-player-action="fullscreen"] {
    display: none;
  }

  .detail-side-card {
    position: static;
  }
}

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

  .brand-text {
    display: none;
  }

  .hero {
    height: 520px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .movie-grid,
  .compact-grid,
  .search-page .compact-grid {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 34px 78px 1fr;
  }

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
