body {
  background: linear-gradient(to bottom, #87ceeb, #e0f7ff);
  margin: 0;
  font-family: Arial, sans-serif;
}

.difficulty {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #dff6ff, #bde0fe);
}

.menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#scorecard {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.maxscore {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.text {
  font-size: 42px;
  margin: 0;
}

.flexbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border: none;
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  color: white;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.button:hover {
  transform: scale(1.1);
}

#game {
  display: none;
  text-align: center;
}

.title {
  margin-top: 10px;
}

.scoreboard {
  display: flex;
  justify-content: space-around;
  font-size: 20px;
  margin: 10px;
}

.board {
  margin: 20px auto;
  padding: 20px;
  background: #222;
  width: 360px;
  height: 360px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px;
}

.hole {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #5c3d2e, #2d1b12);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.1s;
}

.hole:active {
  transform: scale(0.95);
}

.mole {
  width: 90px;
  animation: pop 0.2s ease;
}

@keyframes pop {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#cursor {
  position: fixed;
  transform: translate(-50%, -50%);
  width: 60px;
  pointer-events: none;
  z-index: 1000;
}
