/* =================== Dice (mobile button redesign) =================== */
/* Dice has only one primary action — Roll. There is no contextual "two-button"
   exchange like the other games, so the mobile media query just enforces the
   same 44px primary-action height. The Turbo button (#dice-turbo) is a
   .gp-btn-mini utility, not part of the action bar. The .is-legal toggle
   still flips during in-flight requests so the bar collapses if a click is
   pending — same as Blackjack. */
@media (max-width: 720px) {
  #roll-btn,
  .gp-actions-original #roll-btn {
    flex: 1 1 100%;
    min-height: 44px;
    padding: 8px 6px;
    font-size: 14px;
    line-height: 1.1;
  }
  /* Hide the roll button while a request is in flight (busy state strips
     .is-legal). Since this is the only action, hiding it during the click
     also keeps the fixed-bottom mirror from showing a greyed-out copy. */
  #roll-btn:not(.is-legal),
  .gp-actions-original #roll-btn:not(.is-legal) {
    display: none !important;
  }
}
