/* style.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 20px;
}

h1 {
  text-align: center;
  color: #f5c542; /* goud vibe */
  margin-bottom: 30px;
  font-size: 2.5rem;
  text-shadow: 0 0 8px rgba(245, 197, 66, 0.6);
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.player {
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 24px;
  width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(245, 197, 66, 0.3);
}

.player h2 {
  text-align: center;
  margin-top: 0;
  color: #f5c542;
}

.counter {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.counter h3 {
  margin: 0;
  font-size: 15px;
  flex: 1;
  color: #ddd;
}

.count {
  width: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background-color: #2a2a2a;
  color: #f5c542; /* goudkleur voor teller */
  padding: 6px 0;
  border-radius: 6px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  user-select: none;
}

button {
  background-color: #2e2e2e;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

button:hover {
  background-color: #f5c542;
  color: #000;
}

button:active {
  transform: scale(0.95);
}

.player > button {
  margin-top: 20px;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  background-color: #f5c542;
  color: #000;
}

.player > button:hover {
  background-color: #ffde75;
}
