body {
  background: linear-gradient(120deg, #f7971e 0%, #ffd200 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  text-align: center;
}
h1 {
  color: #f7971e;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.scoreboard {
  font-size: 1.3em;
  color: #444;
  margin-bottom: 12px;
}
.mole-grid {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  grid-template-rows: repeat(3, 80px);
  gap: 18px;
  justify-content: center;
  margin: 0 auto 18px auto;
  max-width: 300px;
}
.mole-hole {
  background: #ffe082;
  border: 2px solid #f7971e;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}
.mole-hole.active {
  background: #ffd200;
}
button {
  background: #f7971e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
button:hover {
  background: #ffd200;
  color: #333;
}
@media (max-width: 500px) {
  .mole-grid { grid-template-columns: repeat(3, 22vw); grid-template-rows: repeat(3, 22vw); gap: 4vw; }
  .mole-hole { width: 22vw; height: 22vw; font-size: 8vw; }
}
