/* Safe Arcade — day/night theme.
   Night (prefers-color-scheme: dark, or no preference): current near-black neon look, unchanged.
   Day (prefers-color-scheme: light): the same layout, but the near-black backdrop becomes a
   noticeably lighter charcoal so the site isn't jet black on light-mode devices. */

@media (prefers-color-scheme: light) {
  html, body {
    background: #2b2f3a !important;
  }
  header {
    background: rgba(43, 47, 58, 0.88) !important;
    border-bottom-color: rgba(0, 229, 255, 0.22) !important;
  }
  #wrap {
    background: linear-gradient(180deg, #3a3f4d 0%, #24272f 100%) !important;
  }
  .neon-box,
  .info-card,
  .game-card,
  .panel,
  .featured {
    background: linear-gradient(160deg, #2a2e39 0%, #202430 100%) !important;
  }
}
