.samson-board {
  background: radial-gradient(circle at 50% 20%, #fff7d6, #ffe8b0 45%, #f7c56b);
  display: grid;
  place-items: center;
  padding: 12px;
}
.samson-scene {
  width: min(100%, 680px);
  min-height: 330px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 12px;
  place-items: center;
  text-align: center;
}
.samson-title {
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  font-weight: 1000;
  color: #5c2c00;
  text-shadow: 0 2px 0 rgba(255,255,255,0.55);
}
.samson-art {
  position: relative;
  width: min(100%, 420px);
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255,255,255,0.42);
  border: 2px solid rgba(92,44,0,0.16);
  overflow: hidden;
}
.samson-art::before {
  content: "";
  position: absolute;
  inset: auto -20px 0 -20px;
  height: 42px;
  background: rgba(126, 79, 27, 0.18);
  border-radius: 999px 999px 0 0;
}
.samson-man, .samson-lion {
  position: absolute;
  font-size: clamp(3rem, 12vw, 5.4rem);
  line-height: 1;
  transition: transform 0.3s ease;
}
.samson-man { left: 23%; z-index: 2; transform: rotate(-8deg); }
.samson-lion { right: 23%; z-index: 1; transform: rotate(8deg) scaleX(-1); }
.samson-scene.victory .samson-man { animation: samson-pull-left 0.9s ease both; }
.samson-scene.victory .samson-lion { animation: samson-pull-right 0.9s ease both; }
.samson-button {
  width: min(78vw, 260px);
  height: min(78vw, 260px);
  max-height: 260px;
  border-radius: 50%;
  border: 12px solid #8f0606;
  background: radial-gradient(circle at 38% 32%, #ff7777, #e01616 52%, #9d0505);
  color: white;
  font-size: clamp(2rem, 10vw, 4.4rem);
  font-weight: 1000;
  letter-spacing: -0.05em;
  box-shadow: 0 16px 0 #650303, 0 26px 32px rgba(88, 0, 0, 0.28);
  touch-action: manipulation;
  user-select: none;
  margin: 0;
}
.samson-button:active, .samson-button.tap-pop {
  transform: translateY(10px) scale(0.98);
  box-shadow: 0 6px 0 #650303, 0 14px 20px rgba(88, 0, 0, 0.2);
}
.samson-result {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: #5c2c00;
  border: 2px solid rgba(92,44,0,0.12);
  font-weight: 1000;
  font-size: clamp(1rem, 4vw, 1.5rem);
}
.catch-item.caught-good, .catch-item.caught-bad {
  pointer-events: none;
  animation: catch-pop 0.12s ease forwards !important;
}
@keyframes samson-pull-left {
  0% { transform: rotate(-8deg) translateX(0) scale(1); }
  55% { transform: rotate(-22deg) translateX(-26px) scale(1.12); }
  100% { transform: rotate(-18deg) translateX(-36px) scale(1.08); }
}
@keyframes samson-pull-right {
  0% { transform: rotate(8deg) translateX(0) scaleX(-1) scale(1); }
  55% { transform: rotate(22deg) translateX(26px) scaleX(-1) scale(1.12); }
  100% { transform: rotate(18deg) translateX(42px) scaleX(-1) scale(1.05); opacity: 0.86; }
}
@media (max-width: 760px) {
  .samson-art { height: 115px; }
  .samson-man { left: 18%; }
  .samson-lion { right: 18%; }
  .samson-button { width: min(72vw, 220px); height: min(72vw, 220px); }
}
