/* Pinball — Neon Arcade theme */
body.in-game {
  margin: 0;
  background:
    radial-gradient(ellipse at top, rgba(168, 85, 247, 0.12) 0%, transparent 60%),
    #050818;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 16px 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: #e8eaff;
}
.pb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
#game {
  background: #050818;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 14px;
  box-shadow:
    0 0 60px rgba(168, 85, 247, 0.2),
    0 0 24px rgba(255, 0, 245, 0.08) inset;
  max-width: min(90vw, 480px);
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 720;
  display: block;
  touch-action: none;
}
.pb-help {
  color: #9aa0c5;
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  max-width: 100%;
}
.pb-key {
  display: inline-block;
  padding: 1px 7px;
  margin: 0 2px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 4px;
  color: #00f5ff;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}
@media (max-width: 640px) {
  body.in-game { padding-top: 48px; }
  .pb-help { font-size: 11px; padding: 6px 10px; }
}
