.wk-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.wk-stat {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 5px 12px;
  text-align: center;
  min-width: 68px;
  box-shadow: var(--shadow-sm);
}
.wk-k { display: block; font-size: 11px; color: var(--muted); }
.wk-stat b { font-size: 18px; color: var(--ink); }
.wk-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(94vw, 360px);
  margin: 10px auto;
  user-select: none;
}
.wk-hole {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 74%, #8b6a4a 0 52%, #c39a72 53%, #e2c3a0 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 8px 14px rgba(0, 0, 0, 0.28);
}
.wk-hole:active { filter: brightness(1.06); }
.wk-mole {
  font-size: clamp(30px, 10vw, 52px);
  line-height: 1;
  transform: translateY(110%);
  transition: transform 0.11s ease-out;
  pointer-events: none;
  padding-bottom: 8%;
}
.wk-hole.up .wk-mole { transform: translateY(0); }
.wk-hole.bonk .wk-mole { transform: translateY(50%) scale(0.75); }
.wk-fx {
  position: absolute;
  top: 6px;
  font-weight: 900;
  font-size: 17px;
  pointer-events: none;
  animation: wk-pop 0.6s ease-out forwards;
}
.wk-fx.plus { color: #2fd6a8; }
.wk-fx.minus { color: #ff5470; }
@keyframes wk-pop {
  to { transform: translateY(-22px); opacity: 0; }
}
.wk-best {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}
