body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1f4037, #99f2c8);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: white;
}

.container {
  width: 90%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

input {
  width: 80%;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  background-color: #ffe600;
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ffcc00;
}

#playerCard img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 1rem auto;
}

.hidden {
  display: none;
}

#statsContainer {
  margin-top: 2rem;
  text-align: left;
}

#statsContainer h4 {
  margin-top: 1rem;
}

#statsContainer ul {
  list-style: none;
  padding-left: 1rem;
}
