h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
  line-height: 1;
}

h1 span {
  color: var(--butterfly-red);
}

/* Coluna do rank (#) — centraliza e dá respiro */
.table-wrapper table th:first-child,
.table-wrapper table td:first-child {
  width: 56px;
  text-align: center;
  padding-left: 14px;
  padding-right: 14px;
}

/* ===== Podium (Top 1/2/3) — subtle + readable ===== */

.podium-1,
.podium-2,
.podium-3 {
  position: relative;
}

/* barra lateral (não pinta a linha toda) */
.podium-1 {
  box-shadow: inset 4px 0 0 rgba(218, 180, 70, 0.95);
}
.podium-2 {
  box-shadow: inset 4px 0 0 rgba(190, 200, 210, 0.85);
}
.podium-3 {
  box-shadow: inset 4px 0 0 rgba(205, 140, 85, 0.85);
}

/* leve “lift” */
.podium-1 td,
.podium-2 td,
.podium-3 td {
  background: rgba(255, 255, 255, 0.015);
}

.podium-1:hover td,
.podium-2:hover td,
.podium-3:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.podium-1 .player-link {
  font-weight: 900;
  text-shadow: 0 0 10px rgba(218, 180, 70, 0.15);
}
.podium-2 .player-link {
  font-weight: 800;
  text-shadow: 0 0 10px rgba(190, 200, 210, 0.12);
}
.podium-3 .player-link {
  font-weight: 800;
  text-shadow: 0 0 10px rgba(205, 140, 85, 0.12);
}

/* Badge no número (#) */
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

/* Top 1 */
.podium-1 .rank-num {
  border-color: rgba(218, 180, 70, 0.55);
  box-shadow: 0 0 0 2px rgba(218, 180, 70, 0.1);
}

/* Top 2 */
.podium-2 .rank-num {
  border-color: rgba(190, 200, 210, 0.45);
  box-shadow: 0 0 0 2px rgba(190, 200, 210, 0.08);
}

/* Top 3 */
.podium-3 .rank-num {
  border-color: rgba(205, 140, 85, 0.45);
  box-shadow: 0 0 0 2px rgba(205, 140, 85, 0.08);
}

/* Linha do SteamID + link Steam */
.player-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.steam-link {
  opacity: 0.75;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
}

.steam-link:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}
