﻿.menu-host-presence {
  display: grid;
  grid-template-rows: 96px 32px;
  justify-items: center;
  align-content: center;
  gap: 6px;
  min-height: 134px;
  margin: 0;
}

.menu-host-image {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
}

.menu-host-presence p {
  display: -webkit-box;
  min-height: 32px;
  margin: 0;
  overflow: hidden;
  color: var(--gf-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.scoreboard-panel {
  margin-top: 14px;
  padding: 18px;
}

.leaderboard-list {
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
}

.leaderboard-entry {
  display: grid;
  grid-template-columns: 34px 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 6px 10px;
}

.leaderboard-header {
  min-height: 34px;
  color: var(--gf-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.leaderboard-gap {
  padding: 2px 10px;
}

.leaderboard-empty {
  display: grid;
  gap: 10px;
  padding: 24px 10px;
}

.leaderboard-empty p {
  margin: 0;
  color: var(--gf-muted);
}

.leaderboard-empty .start-button {
  max-width: 240px;
}

.leaderboard-updated {
  padding: 4px 10px;
  color: var(--gf-muted);
  font-size: 12px;
  text-align: right;
}

.leaderboard-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 224px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border-radius: 8px;
}

.podium-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 134px;
  padding: 14px 10px 18px;
  border-radius: 8px 8px 6px 6px;
  text-align: center;
}

.podium-1 {
  min-height: 166px;
  transform: translateY(-14px);
}

.podium-2,
.podium-3 {
  min-height: 126px;
}

.podium-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.podium-1 .podium-avatar {
  width: 70px;
  height: 70px;
}

.podium-card .scoreboard-position {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(246, 200, 95, 0.56);
  border-radius: 50%;
  background: rgba(9, 10, 15, 0.68);
  color: var(--gf-gold);
  font-size: 15px;
}

.podium-1 .scoreboard-position {
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.podium-card span,
.leaderboard-entry span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-image.large {
  width: 58px;
  height: 58px;
}

.scoreboard-avatar {
  width: 36px;
  height: 36px;
}

