/* Whack-a-Mole Arcade custom styling */
:root {
  --primary-glow: #ffb800;
}

.tagline {
  margin: -0.5rem 0 1rem;
  color: #ffde59;
  font-size: 1.1rem;
  font-weight: bold;
}

.gameover-sub {
  margin: -0.5rem 0 0.5rem;
  color: #8f8ba8;
  font-size: 1.1rem;
}

.hud-box {
  background: rgba(30, 20, 50, 0.85);
  border: 2px solid #ffb800;
  border-radius: 16px;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.25);
  display: inline-block;
  justify-self: center;
}

.sub-box {
  border-color: #7c6cff;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 4px 15px rgba(124, 108, 255, 0.25);
}

.hiscore-banner {
  color: #ffe600;
  font-size: 1.3rem;
  font-weight: 900;
  animation: pulse-glow 0.8s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.96); text-shadow: 0 0 10px #ffe600; }
  100% { transform: scale(1.04); text-shadow: 0 0 25px #ff6b00; }
}

#start-btn, #play-again-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  box-shadow: 0 6px 20px rgba(255, 75, 43, 0.4);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 0.9rem 2.8rem;
  border: 2px solid #ffde59;
}
