body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f8ff;
  text-align: center;
  margin: 20px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.buttons {
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  transition: background-color 0.3s;
}
button:disabled {
  background-color: #a5d6a7;
  cursor: not-allowed;
}
button:hover:not(:disabled) {
  background-color: #45a049;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.hole {
  width: 120px;
  height: 120px;
  background-color: #8B4513; /* brown for holes */
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 0 10px #555;
  transition: transform 0.2s;
}

.hole:hover {
  transform: scale(1.05);
}

.mole {
  width: 70px;
  height: 70px;
  background-color: gray;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.mole:hover {
  transform: scale(1.1);
}