/* Container styling */
.game-container {
  max-width: 420px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #121212; /* deep dark background */
  border: 2px solid #00ffff33; /* subtle cyan glow */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #e0e0ff; /* soft purple-white text */
}

/* Title */
.game-container h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #00ffff; /* cyan */
  text-shadow: 0 0 5px #00ffffaa;
}

/* Labels */
.game-container label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #bb86fc; /* purple accent */
}

/* Inputs */
.game-container input[type="number"] {
  width: 100%;
  padding: 0.5rem;
  background: #1f1f1f;
  border: 1px solid #bb86fc;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
}

/* Buttons */
.game-container button {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.8rem;
  background: linear-gradient(to right, #00ffff, #bb86fc);
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.game-container button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #00ffffaa;
}

/* Feedback */
#feedback {
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccccff;
}

/* Winner/Loser feedback colors */
#feedback.green {
  color: #00ff99;
}

#feedback.red {
  color: #ff4444;
}

