/* assets/css/base.css */

:root{
  --bg:#050806;
  --fg:#7CFF9B;
  --dim:rgba(124,255,155,.25);
  --glow:rgba(124,255,155,.65);
  --warn:#ff4d6d;
}

html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  overflow:hidden;
}

body{
  color:var(--fg);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* Canvas fills the viewport */
canvas{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  image-rendering:pixelated;
}

/* Basic utility: avoid selection flashes */
*{ -webkit-tap-highlight-color: transparent; }

/* iOS safe-area padding (minor) */
@supports (-webkit-touch-callout: none){
  body{ padding-bottom: env(safe-area-inset-bottom); }
}
