/* ══════════════════════════════════════════
   PLAYERS — top player widget + strip
══════════════════════════════════════════ */

/* ── TOP PLAYER WIDGET ───────────────────────────────── */

.top-player {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.top-player-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--t-accent);
}
.top-player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-player-info {
  flex: 1;
  min-width: 0;
}
.top-player-label {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  transition: color var(--t-accent);
}
.top-player-name {
  font-family: var(--font-display);
  font-size: var(--fs-venus);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-player-stats {
  display: flex;
  gap: 12px;
}
.tp-stat {
  text-align: center;
}
.tp-val {
  font-family: var(--font-display);
  font-size: var(--fs-mars);
  color: var(--accent);
  line-height: 1;
  transition: color var(--t-accent);
}
.tp-lbl {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Top players */

.tp-strip-card {
  background: var(--coal-card);
  border: 1px solid var(--coal-border);
  border-radius: var(--r-md);
  padding: 14px 12px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-fast);
}
.tp-strip-card:hover {
  border-color: var(--grey-lo);
  background: var(--coal-hover);
  transform: translateY(-2px);
}
.tp-strip-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  background: var(--coal-mid);
  border: 2px solid var(--coal-border);
}
.tp-strip-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-strip-name {
  font-family: var(--font-display);
  font-size: var(--fs-venus);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.tp-strip-team {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tp-strip-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.tp-strip-stat { text-align: center; }
.tp-strip-val {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-mars);
  color: var(--accent);
  line-height: 1;
}
.tp-strip-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
