.lye-exp-leaderboard {
  margin-top: 24px;
}

.lye-exp-leaderboard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lye-exp-leaderboard__card {
  background: #fff;
  border: 1px solid rgba(121, 6, 71, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lye-exp-leaderboard__title {
  font-size: 18px;
  font-weight: 700;
  color: #790647;
  margin-bottom: 18px;
}

.lye-exp-leaderboard__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lye-exp-leaderboard__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(121, 6, 71, 0.05);
}

.lye-exp-leaderboard__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lye-exp-leaderboard__rank {
  min-width: 32px;
  font-weight: 700;
  color: #790647;
}

.lye-exp-leaderboard__avatar img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: block;
}

.lye-exp-leaderboard__name {
  font-weight: 600;
  color: #1a1a1a;
  word-break: break-word;
}

.lye-exp-leaderboard__points {
  font-weight: 700;
  color: #790647;
  white-space: nowrap;
}

.lye-exp-leaderboard__empty {
  color: #666;
  font-size: 14px;
}

@media (max-width: 900px) {
  .lye-exp-leaderboard__grid {
    grid-template-columns: 1fr;
  }
}