.tokens-container {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  z-index: 5;
  max-width: 90%;
}

.space.side-left .tokens-container {
  bottom: auto;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
}

.space.side-right .tokens-container {
  bottom: auto;
  right: 4px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
}

.player-token {
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  border: 2px solid #333;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.player-token.current-turn {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
