* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #171824 0%, #0b0d15 100%);
  color: #f5f2e8;
  font-family: Inter, Arial, sans-serif;
}

.leaderboard-page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 32px 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.08em;
  color: #ffd36a;
}

header p {
  color: #d8d4c8;
  margin-top: 12px;
}

.podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.podium-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 211, 106, 0.14);
  border-radius: 24px;
  padding: 22px;
  text-align: center;
  min-height: 190px;
}

.podium-card span.position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 211, 106, 0.2);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.podium-card .name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.podium-card .xp,
.podium-card .level {
  color: #ddd;
}

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

.row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 18px 22px;
}

.row .rank {
  font-weight: 900;
  color: #ffd36a;
}

.row .name {
  font-weight: 700;
}

.row .xp {
  text-align: right;
  color: #d8d4c8;
}

.footer {
  margin-top: 28px;
  text-align: center;
  color: #9c967d;
}
