/* Blackjack — theme override on top of the shared arcade kit. */
:root { --accent: #f5a04e; }

#stage { background: #0c1b14; }

/* Action + betting buttons live in the DOM so they get real tap
   targets and focus states rather than being drawn on the canvas. */
.action-bar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.action-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}
.act {
  flex: 1 1 0;
  min-width: 74px;
  max-width: 150px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease, opacity 0.12s ease;
}
.act:active { transform: scale(0.95); }
.act:disabled { opacity: 0.34; cursor: default; }
.act.primary { background: linear-gradient(135deg, #f5a04e, #e0812c); color: #22140a; border-color: transparent; }
.act.danger  { background: linear-gradient(135deg, #FF6B5C, #d94a3c); color: #fff; border-color: transparent; }
.act.chip    { background: linear-gradient(135deg, #4ECDC4, #2f9a93); color: #04231f; border-color: transparent; }
