:root{
  --scale: 4; /* change to scale pixel-art up/down */
  --bg: #0b1220;
  --panel: #071026;
  --accent: #ffd166;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#061022 0%, #0b1220 100%);
  font-family:system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:#ddd;
}

.wrap{
  display:flex;
  gap:12px;
  align-items:center;
  flex-direction:column;
}

/* Canvas: internal low resolution, scaled up for pixel look */
canvas#game{
  image-rendering: pixelated; /* nearest neighbor scaling */
  width: calc(160px * var(--scale));
  height: calc(120px * var(--scale));
  background: #071026;
  border: 4px solid #092135;
  display:block;
}

/* HUD */
.hud{
  width: calc(160px * var(--scale));
  display:flex;
  justify-content:space-between;
  font-size:14px;
  color:var(--accent);
  font-weight:600;
  margin-top:8px;
}
#message{color:#9ec8ff;font-weight:500}