
/* =========================
   LIGHT 8 BIT MODE
========================= */

body.retro-mode {
  background: #111 !important;
  color: #00ffcc !important;
  font-family: 'Press Start 2P', cursive !important;
  letter-spacing: 1px;
}

body.retro-mode * {
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: none !important;
}

body.retro-mode img {
  image-rendering: pixelated;
  filter: contrast(1.05) saturate(1.1);
}

body.retro-mode::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 2px,
    transparent 3px
  );
  z-index: 9999;
}

#arcade-hud{
  position: fixed;
  top: 15px;
  left: 15px;
  background: #000;
  color: #00ffcc;
  padding: 8px 12px;
  border: 2px solid #00ffcc;
  font-size: 10px;
  display: none;
  z-index: 10000;
}

body.retro-mode #arcade-hud{
  display: block;
}
