body {
  font-family: 'Arial', sans-serif;
  text-align: center;
  background: linear-gradient(120deg, #ffecd2, #fcb69f);
  margin: 0;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
  color: #333;
  text-shadow: 2px 2px 5px #fff;
}

.game-info {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.hole {
  width: 120px;
  height: 120px;
  background: #654321;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 4px #422a1c, 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.1s;
}

.hole.active {
  transform: translateY(-5px);
}

.mole {
  width: 80px;
  height: 80px;
  background: brown;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 20px;
  box-shadow: inset -4px -4px 5px #532a1a, 2px 2px 5px rgba(0,0,0,0.5);
  animation: pop 0.3s;
}

@keyframes pop {
  0% { transform: translateY(30px); opacity: 0; }
  50% { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

button {
  padding: 10px 25px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background-color: #ff7f50;
  color: white;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.1s;
}

button:hover { transform: scale(1.05); }
button:active { transform: scale(0.95); }
