/* Life of Çınar — global styles.
   Everything else is drawn on the canvas; this only sets up the stage. */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b0d1a;
  color: #fff;
  font-family: "Courier New", ui-monospace, monospace;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}

#stage {
  position: fixed;
  inset: 0;
  background: #0b0d1a;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  cursor: default;
}

/* Very subtle vignette only (no scanline stripes) */
#crt {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background:
    radial-gradient(ellipse at center,
      rgba(0,0,0,0) 62%,
      rgba(0,0,0,0.22) 100%);
  opacity: 0.6;
}

#fallback {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  z-index: 1;
}
#fallback h1 { font-size: 40px; letter-spacing: 3px; }
#fallback p { max-width: 520px; line-height: 1.6; opacity: 0.8; }
/* Hidden once the canvas game boots */
.booted #fallback { display: none; }
