.leaderboard-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;

  gap: 20px;
}

.leaderboard-item {
  width: 173px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease;

}

.leaderboard-item::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background: radial-gradient(ellipse at center, var(--accent, #ffffff) 0%, transparent 70%);
  opacity: 0.2;
  transition: opacity 0.25s ease;
}

.leaderboard-item:hover {
  opacity: 1;
}

.leaderboard-item:hover::after {
  opacity: 1;
}

.leaderboard-item.active {
  opacity: 1;
}

.leaderboard-item.active::after {
  opacity: 1;
}

.leaderboard-item a img {
  width: 175px;
  height: auto;
}
