/* ── Pachinko Page ── */
.pachinko-page {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 110px 16px 60px; /* leaves room for HUD */
  gap: 12px;
}

.page-sub {
  color: var(--text-dim); font-size: 0.9rem; text-align: center;
  transition: color 0.3s;
}

/* STOP button uses the same look as wheel STOP */
.pachinko-page .btn-stop {
  min-width: 180px;
}

.pachinko-wrapper {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  filter: drop-shadow(0 0 20px rgba(255,59,92,0.3));
}

#pachCanvas {
  display: block;
  border-radius: 12px 12px 0 0;
  background: #0d1b2e;
  cursor: crosshair;
  touch-action: none;
}

/* ── Prize Slots Row ── */
.prize-slots-row {
  display: flex;
  width: 100%;
  background: rgba(0,0,0,0.4);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
}

.prize-slot {
  flex: 1;
  padding: 10px 4px 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  border-right: 1px solid rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.1s;
  line-height: 1.3;
  cursor: default;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 52px;
}
.prize-slot:last-child { border-right: none; }
.prize-slot.active {
  animation: slotFlash 0.4s ease 3;
}
@keyframes slotFlash {
  0%,100% { filter: brightness(1); transform: scaleY(1); }
  50%      { filter: brightness(2.5); transform: scaleY(1.05); }
}
.prize-slot-label {
  word-break: break-word;
  line-height: 1.2;
}

/* Aim guide arrow */
.aim-arrow {
  position: absolute;
  top: -28px;
  pointer-events: none;
  color: var(--gold);
  font-size: 1.6rem;
  text-shadow: 0 0 10px var(--gold);
  transition: left 0.05s linear;
  transform: translateX(-50%);
  z-index: 10;
}
