/* Air Hockey — theme override on top of the shared arcade kit. */
:root { --accent: #4ECDC4; }

#stage { background: #0a1420; aspect-ratio: 3 / 4; max-height: 82vh; }
@media (min-width: 760px) { #stage { aspect-ratio: 3 / 4; max-width: 480px; margin: 0 auto; } }

.opt-row { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; }
.opt {
  padding: 11px 17px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.opt.active { background: linear-gradient(135deg, #4ECDC4, #2f9a93); color: #04231f; border-color: transparent; }
