/* 두더지 잡기 전용 스타일 */
#board {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #eef2ff;
}

#hud {
  display: flex;
  gap: 26px;
  font-size: 20px;
  font-weight: 800;
}

#holes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hole {
  width: min(26vw, 118px);
  height: min(26vw, 118px);
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 62%, #1a2238 58%, #232c47 60%);
  border: none;
  padding: 0;
  font-size: min(15vw, 62px);
  line-height: 1;
  overflow: hidden;
  position: relative;
}

.hole .mole {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.09s ease-out;
}

.hole.up .mole { transform: translateY(6%); }

.hole.whacked .mole { transform: translateY(100%) scale(0.7); }

#hint-line { font-size: 15px; color: #8b96b8; }

#ready h1 {
  font-size: clamp(40px, 12vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hint { font-size: 17px; color: #aab4d4; line-height: 1.6; }
.hint .accent { color: #f59e0b; font-weight: 700; }
.hint .bomb { color: #ff5d73; font-weight: 700; }
