/* ── Full leaderboard page layout ─────────────────────────────────────── */
.lb-page-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lb-page-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lb-back-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: color 0.18s, background 0.18s;
}
.lb-back-btn:hover { color: var(--accent); background: rgba(0,212,255,0.1); }

.lb-page-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.lb-page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lb-podium-full {
  margin-bottom: 0.25rem;
}

.lb-skeleton-card {
  height: 150px;
  border-radius: var(--radius);
}

/* ── Full ranked list ────────────────────────────────────────────────────── */
.lb-full-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

/* ── Rank badge colours for rows 4-10 ──────────────────────────────────── */
.lb-row-rank { color: var(--text-muted); }
.lb-row.top4  .lb-row-rank { color: #f5b500; }
