body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f6f8;
  padding: 20px;
  color: #333;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.player-container {
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.player {
  text-align: center;
  margin-bottom: 10px;
}

p {
  margin: 10px 0;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

button {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  background-color: #0078d4;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #005fa3;
}

button.reset {
  background-color: #888;
}

button.reset:hover {
  background-color: #555;
}

.result {
  font-weight: bold;
  color: #444;
}
