/* responsive.css */
/* Default is fluid based on cqw/cqh. Use specific container queries for extreme aspects if needed */

@container game-shell (min-aspect-ratio: 16 / 9) {
  /* Wider 16:9 adjustments */
  .modal-banner {
    max-width: 60cqw;
  }
}

@container game-shell (max-aspect-ratio: 8 / 5) {
  /* Taller 16:10 adjustments */
  .modal-banner {
    max-width: 80cqw;
  }
}
