/* ===== RANKING DARK CLEAN ===== */

.ranking-top10 {
  background: #0b1220;
  border-radius: 14px;
  padding: 14px;
  margin: 16px 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.ranking-top10 h3 {
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* item */
.ranking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
}

.ranking-item + .ranking-item {
  margin-top: 6px;
}

.ranking-item:hover {
  background: rgba(255,255,255,0.03);
}

/* posição */
.posicao {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: #9ca3af;
}

/* avatar */
.ranking-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* info */
.info {
  flex: 1;
  min-width: 0; /* 🔑 evita sumir */
}

/* nome */
.ranking-user {
  display: block;
  color: #f3f4f6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-user:hover {
  color: #22c55e;
}

/* barra */
.barra {
  background: #020617;
  height: 6px;
  border-radius: 6px;
  margin: 4px 0;
  overflow: hidden;
}

.barra span {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* texto */
.info small {
  font-size: 11px;
  color: #9ca3af;
}

/* 🥇 destaque primeiro */
.ranking-item.top-one {
  background: rgba(34,197,94,0.12);
}

.ranking-item.top-one .posicao {
  color: #22c55e;
}

.ranking-item.top-one .ranking-user {
  color: #bbf7d0;
}