/* --- Shared icon styles --- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
/* Empty state styles for all leaderboards */
.empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px 20px;
  width: 100%;
}
.empty-state-icon {
  font-size: 80px !important;
  opacity: 0.3;
  margin-bottom: 20px;
  color: #fff;
}
.empty-state-message {
  color: #fff;
  text-align: center;
  opacity: 0.7;
  font-size: 1.2em;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
}
.empty-state-container.empty-state-container--light .empty-state-icon {
  color: #222;
  opacity: 0.25;
}
.empty-state-container.empty-state-container--light .empty-state-message {
  color: #222;
  opacity: 0.75;
}
.content-card.leaderboard-card {
  max-width: 600px;
}
.leaderboard-header {
  text-align: center;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 32px;
  font-size: 2.7em;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 4px 0 #00000022;
}
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
  padding-bottom: 32px;
}
.leaderboard-entry {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 4px 8px 0 #2d1a5a44;
  padding: 0 24px 0 0;
  min-width: 320px;
  max-width: 600px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  border: 3px solid #222;
  height: 70px;
  overflow: visible;
}
.rank-box {
  background: linear-gradient(135deg, #00CFFF 60%, #00B2FF 100%);
  color: #fff;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 0 #00000022;
  border-right: 3px solid #222;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  z-index: 2;
}
.avatar-box {
  position: relative;
  margin-left: 8px;
  margin-right: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-box img.img-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #222;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px #0002;
}
.avatar-box img.verified {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px #0002;
}
.entry-name {
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  color: #222;
  margin-right: auto;
  margin-left: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 0 #00000011;
  display: flex;
  align-items: center;
  height: 100%;
}
.entry-score {
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  color: #222;
  margin-left: 24px;
  /* min-width: 90px; */
  text-align: right;
  text-shadow: 0 2px 0 #00000011;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 600px) {
  .leaderboard-entry { min-width: 0; max-width: 98vw; padding: 0 4px 0 0; }
  .rank-box, .avatar-box { width: 36px; height: 100%; }
  .avatar-box img.img-circle { width: 36px; height: 36px; }
  .avatar-box img.verified { width: 12px; height: 12px; }
  .entry-name, .entry-score { font-size: 1em; min-width: 60px; }
}
