.participants-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.events-participants-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* #participantsList {
  display: grid;
  grid-template-columns: repeat(1, minmax(180px, 1fr));
  gap: 10px;
} */

.participant-item {
  padding: 15px;
  background: rgba(44, 50, 63, 0.7);
  border-radius: 8px;
  border-left: 4px solid #3a7bd5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e0e6f0;
  gap: 15px;
  cursor: pointer;
}

.participant-item:hover {
  transform: translateX(5px);
  background: rgba(58, 123, 213, 0.7);
  color: #fff;
  box-shadow: 0 4px 12px rgba(58, 123, 213, 0.3);
}

.participant-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 1.1em;
  color: #b0b8c8;
}

.participants-list .participant-rank{
  display: none;
}

.participant-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3a7bd5;
  flex-shrink: 0;
}

.participant-rank.participant-rank-events {
  width: 60px;
}

.participant-info {
  flex: 1;
}

.participant-name {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.participant-tournaments {
  font-size: 0.9em;
  color: #ffd700;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.participant-tournaments span{
  margin-right: 2px;
}

.participant-stats {
  font-size: 0.9em;
  opacity: 0.8;
}

.participant-bets-count {
  background: rgba(58, 123, 213, 0.8);
  color: #e0e6f0;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9em;
  min-width: 50px;
  text-align: center;
}

.participant-points {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Победитель в заблокированном турнире */
.participant-item.winner {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.5) 0%,
    rgba(218, 165, 32, 0.5) 50%,
    rgba(255, 215, 0, 0.5) 100%
  );
  background-size: 200% 200%;
  border: 2px solid rgba(255, 215, 0, 0.8);
  animation: goldenShimmer 3s ease-in-out infinite;
}

.participant-item.winner:hover {
  animation: goldenShimmerHover 0.6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
    inset 0 0 20px rgba(255, 215, 0, 0.2);
}

@keyframes goldenShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes goldenShimmerHover {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Сетка событий (турниров) */
