/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  width: 100%;
}

.filter-btn {
  padding: 2px 8px;
  font-size: 14px;
  border: none;
  background: none;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 400;
  position: relative;
}

.filter-btn:hover {
  color: #666;
}

.filter-btn.active {
  color: #7a5bc9;
  font-weight: 600;
}

.filter-btn:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -2px;
  color: #ddd;
  font-weight: 300;
}

/* Player Grid Container */
.player-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0;
  row-gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.player-grid .player-item {
  width: 90px;
  flex-shrink: 0;
}

/* Player Item */
.player-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.player-item img {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 4));
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Player Name */
.player-grid .player-name {
  font-size: 10px;
  color: #000;
  font-weight: 300;
  margin-bottom: 1px;
  line-height: 1.2;
}

/* Player Role */
.player-grid .player-role {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 3px 0;
  line-height: 1;
}

/* Player Stats */
.player-grid .player-stats {
  font-size: 11px;
  margin-top: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}

.player-grid .player-stats .prefix {
  font-weight: 700;
}

.player-grid .player-stats .score {
  color: #7a5bc9;
  font-weight: 700;
}