.shooter-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, #1e3a8a 0%, #0f172a 45%, #020617 100%);
  color: #fff;
}

.shooter-stage * {
  box-sizing: border-box;
}

.shooter-hud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
}

.shooter-field {
  position: absolute;
  inset: 60px 0 90px;
  overflow: hidden;
}

.shooter-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 60%, rgba(255,255,255,.75) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 85%, rgba(255,255,255,.8) 0 1px, transparent 2px);
  opacity: .85;
  pointer-events: none;
}

.shooter-player,
.shooter-enemy,
.shooter-bullet {
  position: absolute;
  transform: translate(-50%, -50%);
}

.shooter-player {
  font-size: 42px;
  z-index: 5;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.25));
}

.shooter-enemy {
  font-size: 34px;
  z-index: 4;
}

.shooter-bullet {
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fde68a, #f59e0b);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
  z-index: 3;
}

.shooter-bullet.enemy {
  background: linear-gradient(180deg, #fecaca, #ef4444);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.shooter-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,.35);
  z-index: 30;
  padding: 24px;
}

.shooter-overlay.hidden {
  display: none;
}

.shooter-overlay button {
  border: 0;
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #f472b6, #db2777);
}

.shooter-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.shooter-btn {
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  font-size: 24px;
  color: #fff;
  background: rgba(30, 41, 59, 0.9);
}

.shooter-btn.fire {
  background: linear-gradient(180deg, #ef4444, #b91c1c);
}
