:root {
  --ink: #080444;
  --muted: #657087;
  --line: #d9dee6;
  --panel: #ffffff;
  --surface: #f5f7fa;
  --subtle: #fbfcfd;
  --chip: #e9f5fa;
  --complete-bg: #f7fcf8;
  --complete-line: #cfe3d6;
  --active-bg: #f2f9fc;
  --accent: #08709b;
  --accent-dark: #053f72;
  --pink: #b72e68;
  --success: #148244;
  --shadow: rgba(8, 4, 68, 0.06);
}

body.dark-mode {
  --ink: #f5f7ff;
  --muted: #aab5c9;
  --line: #314058;
  --panel: #111827;
  --surface: #080d16;
  --subtle: #0c1422;
  --chip: #123247;
  --complete-bg: #0f2a24;
  --complete-line: #245846;
  --active-bg: #10263a;
  --accent: #4fb5dc;
  --accent-dark: #9bdcf3;
  --pink: #f06a9d;
  --success: #67d391;
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.dark-mode {
  color-scheme: dark;
}

button {
  font: inherit;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.app {
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

.start-screen,
.dashboard {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.start-screen {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.brand,
.dashboard-header,
.panel-header,
.preview-header,
.preview-player {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  margin-bottom: 38px;
  font-weight: 900;
  font-size: 1.1rem;
}

.start-screen .brand {
  justify-content: flex-start;
}

.start-screen .theme-toggle {
  margin-left: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel);
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--ink);
  letter-spacing: 0;
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  align-items: center;
}

.start-copy h1,
.dashboard-header h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.start-copy h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 7.6vw, 6.8rem);
}

.start-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 22px;
}

.feature-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--accent-dark);
  background: var(--chip);
  font-weight: 900;
}

.start-card {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel);
  box-shadow: 0 16px 40px var(--shadow);
}

.year-field {
  display: grid;
  gap: 8px;
  max-width: 220px;
  margin-top: 0;
  color: var(--ink);
  font-weight: 900;
}

.cloud-access {
  display: grid;
  min-width: min(100%, 290px);
  flex: 1 1 290px;
  gap: 8px;
  padding-left: 2px;
}

.email-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.email-field input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
}

.cloud-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cloud-actions span,
.sync-status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.sync-status.synced,
.cloud-actions span.synced {
  color: var(--success);
}

.sync-status.error,
.cloud-actions span.error {
  color: var(--pink);
}

.calendar-season-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.year-field input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-weight: 800;
}

.calendar-season-field select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-button,
.secondary-button {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.primary-button {
  margin-top: 18px;
  color: white;
  border: 1px solid var(--accent);
  background: var(--accent);
}

.start-button {
  min-width: 210px;
  min-height: 48px;
  margin-top: 0;
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--panel);
}

.compact {
  min-height: 40px;
  margin-top: 0;
  padding: 0 14px;
}

.match-card .compact {
  min-height: 30px;
  padding: 0 9px;
  font-size: 0.78rem;
}

.game-hero,
.season-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 40px var(--shadow);
}

.game-hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(8, 4, 68, 0.04), rgba(8, 112, 155, 0.1)),
    var(--panel);
}

.court-stage {
  position: absolute;
  inset: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 49.7%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.08) 50.3%),
    #0a7b73;
}

.court-stage::before,
.court-stage::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
}

.court-stage::after {
  inset: 74px 64px;
}

.court-line,
.net,
.ball {
  position: absolute;
  z-index: 1;
}

.baseline-top,
.baseline-bottom,
.service-line-top,
.service-line-bottom {
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
}

.baseline-top {
  top: 20px;
}

.baseline-bottom {
  bottom: 20px;
}

.service-line-top {
  top: 38%;
}

.service-line-bottom {
  bottom: 38%;
}

.sideline-left,
.sideline-right {
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.78);
}

.sideline-left {
  left: 20px;
}

.sideline-right {
  right: 20px;
}

.center-line {
  top: 38%;
  bottom: 38%;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.78);
}

.net {
  top: 50%;
  left: -8%;
  right: -8%;
  height: 4px;
  background: rgba(8, 4, 68, 0.72);
  box-shadow: 0 7px 0 rgba(8, 4, 68, 0.2);
}

.ball {
  top: 34%;
  right: 26%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d8f45d;
  box-shadow: 0 0 0 6px rgba(216, 244, 93, 0.2);
}

.season-card {
  position: relative;
  z-index: 2;
  padding: 18px;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
}

.season-card-score {
  width: min(430px, 92%);
  margin: 34px 0 0 auto;
}

.season-card-ranking {
  width: min(340px, 88%);
  margin: 150px auto 0 0;
}

.mini-ranking-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.mini-ranking-row:first-of-type {
  border-top: 0;
}

.mini-ranking-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-ranking-row em {
  color: var(--success);
  font-style: normal;
}

.preview-header {
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.35rem;
}

.preview-header strong {
  color: var(--ink);
}

.preview-player {
  min-height: 62px;
  display: grid;
  grid-template-columns: 48px 46px minmax(0, 1fr) auto;
  gap: 12px;
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  display: grid;
  flex: 0 0 44px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--ink));
  font-size: 0.85rem;
  font-weight: 900;
}

.flag {
  min-width: 40px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel);
}

.score {
  color: var(--ink);
  font-weight: 900;
}

.dashboard-header {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.dashboard-tabs button {
  min-height: 44px;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.dashboard-tabs button.active {
  color: var(--accent);
  border-color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.panel {
  padding: 20px;
}

.panel-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel h2 {
  margin: 0;
  font-size: 1.6rem;
}

.date-pill,
.category-pill,
.surface-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.date-pill {
  color: var(--accent-dark);
  background: var(--chip);
}

.ranking-table {
  display: grid;
  min-width: 560px;
}

.ranking-panel {
  overflow-x: auto;
}

.ranking-row {
  display: grid;
  grid-template-columns: 48px minmax(170px, 1fr) 82px 104px 76px 86px;
  align-items: center;
  min-height: 66px;
  border-top: 1px solid var(--line);
  gap: 10px;
}

.ranking-row.header {
  min-height: 40px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.player-cell {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 900;
}

.player-cell span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movement,
.points-delta {
  font-weight: 900;
}

.movement.up,
.points-delta.positive {
  color: var(--success);
}

.movement.down,
.points-delta.negative {
  color: var(--pink);
}

.movement.neutral,
.points-delta.neutral {
  color: var(--muted);
}

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

.tournament-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 8px;
  z-index: 10;
  padding: 10px 0;
  margin-bottom: 16px;
  background: var(--panel);
}

.champion-banner,
.empty-draw {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.champion-banner {
  margin: -2px 0 12px;
}

.inline-sim {
  display: grid;
  gap: 4px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.match-card.completed .inline-sim {
  display: none;
}

.match-score-slot {
  min-height: 24px;
}

.live-controls,
.live-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.live-controls {
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.live-controls label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-controls select {
  width: 62px;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 6px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-weight: 800;
}

.live-empty,
.live-sets {
  color: var(--muted);
  font-weight: 800;
}

.live-scoreboard {
  display: grid;
  gap: 5px;
}

.live-sets {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.live-sets strong {
  color: var(--accent-dark);
}

.live-result {
  justify-content: flex-start;
  color: var(--accent-dark);
  font-weight: 900;
}

.draw-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(300px, 1fr));
  gap: 10px;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 8px;
}

.empty-draw {
  padding: 4px 0;
}

.round-block {
  display: grid;
  gap: 8px;
}

.round-block h3 {
  margin: 0;
  font-size: 0.95rem;
}

.match-card {
  display: grid;
  position: relative;
  gap: 6px;
  min-height: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--subtle);
  color: var(--ink);
  text-align: left;
}

.match-card.completed {
  border-color: var(--complete-line);
  background: var(--complete-bg);
}

.match-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(8, 112, 155, 0.12);
}

.match-label,
.match-score,
.tournament-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.match-player {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
}

.match-player.with-live {
  grid-template-columns: 20px minmax(72px, 1fr) 28px repeat(3, 20px);
}

.match-player strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-name-group {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
}

.player-result-trigger {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.player-result-trigger strong {
  display: block;
  max-width: 100%;
}

.player-result-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.player-defense-popover {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 20;
  width: min(250px, calc(100vw - 72px));
  padding: 8px 10px;
  border: 1px solid var(--accent);
  border-radius: 7px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 8px 22px var(--shadow);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.player-name-group:focus-within .player-defense-popover,
.match-player.defense-visible .player-defense-popover {
  opacity: 1;
  transform: translateY(0);
}

.match-card:has(.player-name-group:focus-within),
.match-card:has(.defense-visible) {
  padding-bottom: 66px;
}

.match-card:has(.player-name-group:focus-within) .player-name-group,
.match-card:has(.defense-visible) .player-name-group {
  position: static;
}

.match-card:has(.player-name-group:focus-within) .player-defense-popover,
.match-card:has(.defense-visible) .player-defense-popover {
  top: auto;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: auto;
}

.match-player small {
  color: var(--muted);
}

.match-player.with-live .set-cell,
.match-player.with-live .point-cell {
  text-align: center;
  font-weight: 900;
}

.match-player.with-live .point-cell {
  color: var(--accent-dark);
}

.match-player.with-live .set-won {
  color: var(--success);
}

.match-player.with-live .set-lost {
  color: var(--pink);
}

.match-player.with-live .current-set {
  color: var(--ink);
}

.match-player.winner strong {
  color: var(--success);
}

.match-score {
  padding-top: 5px;
  border-top: 1px solid var(--line);
}

.tournament-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--subtle);
}

.tournament-card.current {
  border-color: var(--accent);
  background: var(--active-bg);
}

.tournament-card.completed {
  border-color: var(--complete-line);
  background: var(--complete-bg);
}

.tournament-card.locked {
  opacity: 0.56;
}

.tournament-card strong {
  font-size: 1.05rem;
}

.tournament-card p {
  margin: 0;
  color: var(--muted);
}

.tournament-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-pill {
  color: var(--surface);
  background: var(--ink);
}

.surface-pill {
  color: var(--accent-dark);
  background: var(--chip);
}

.hall-of-fame-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.hall-stat {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--subtle);
}

.hall-stat span,
.hall-leader small,
.hall-leader em,
.hall-pending {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.hall-stat strong {
  color: var(--accent-dark);
  font-size: 1.65rem;
}

.hall-section-heading {
  margin: 0 0 10px;
}

.hall-section-heading .eyebrow {
  margin-bottom: 4px;
}

.hall-section-heading h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hall-leader-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.hall-leader {
  display: grid;
  grid-template-columns: 28px 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
}

.hall-place {
  color: var(--muted);
  font-weight: 900;
}

.hall-leader .avatar {
  width: 40px;
  height: 40px;
}

.hall-leader div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.hall-leader strong,
.hall-leader small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-leader b {
  color: var(--accent-dark);
  font-size: 1.3rem;
}

.hall-leader em {
  grid-column: 4;
  text-align: right;
  margin-top: -12px;
}

.hall-of-fame-history {
  overflow-x: auto;
}

.hall-history-table {
  min-width: 760px;
}

.hall-history-row {
  display: grid;
  grid-template-columns: 100px repeat(4, minmax(145px, 1fr));
  align-items: center;
  min-height: 58px;
  border-top: 1px solid var(--line);
  gap: 12px;
}

.hall-history-row.header {
  min-height: 40px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hall-champion {
  color: var(--ink);
  font-weight: 900;
}

.hall-empty {
  padding: 20px 0 28px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 900px) {
  .start-layout {
    grid-template-columns: 1fr;
  }

  .brand {
    margin-bottom: 36px;
  }

  .game-hero {
    min-height: 460px;
  }

  .season-card-score,
  .season-card-ranking {
    width: min(430px, 100%);
  }

  .season-card-ranking {
    margin-top: 96px;
  }
}

@media (max-width: 620px) {
  .start-screen,
  .dashboard {
    width: min(100vw - 20px, 1180px);
    padding-top: 18px;
  }

  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .start-screen .brand {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .start-screen .theme-toggle {
    margin-left: 0;
  }

  .start-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .start-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .start-card,
  .start-button,
  .year-field,
  .cloud-access {
    width: 100%;
    max-width: none;
  }

  .cloud-actions .secondary-button {
    width: 100%;
  }

  .game-hero {
    min-height: 390px;
    padding: 14px;
  }

  .court-stage {
    inset: 14px;
  }

  .season-card {
    padding: 14px;
  }

  .season-card-ranking {
    margin-top: 62px;
  }

  .ranking-row {
    grid-template-columns: 34px minmax(120px, 1fr) 60px 78px 52px 62px;
    font-size: 0.78rem;
    gap: 7px;
  }

  .hall-of-fame-summary {
    grid-template-columns: 1fr;
  }

  .hall-stat {
    min-height: 66px;
  }

  .hall-of-fame-history {
    overflow: visible;
  }

  .hall-history-table {
    display: grid;
    min-width: 0;
    gap: 10px;
  }

  .hall-history-row.header {
    display: none;
  }

  .hall-history-row:not(.header) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--subtle);
  }

  .hall-history-row:not(.header) > strong {
    color: var(--accent-dark);
    font-size: 1.05rem;
  }

  .hall-history-row:not(.header) > span {
    display: grid;
    grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .hall-history-row:not(.header) > span::before {
    content: attr(data-tournament);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .preview-player {
    grid-template-columns: 44px 40px minmax(0, 1fr);
  }

  .score {
    grid-column: 3;
  }
}
