* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: linear-gradient(#0b1220, #0f1b2a);
  color: #fff;*/
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000;
}
#gameWrap { position: relative; }
canvas { background: #164a98;  border-radius: 8px; box-shadow:0px 20px 30px rgba(173, 44, 44, 0.6); }
#hud {
  position: absolute; top: 8px; left: 8px; right: 8px;
  display: flex; justify-content: space-between; pointer-events: none;
}
#hud > div { background: rgba(162, 244, 157, 0.849); padding: 6px 10px; border-radius: 6px; font-weight: 600; }
#overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; background: rgba(0,0,0,0.6);
}
.hidden { display: none !important; }
#overlay h1 { font-size: 28px; }
#overlay button {
  padding: 10px 16px; border-radius: 8px; border: none; cursor: pointer;
  background: #29a3ff; color: #042033; font-weight: 700;
}
 #overlay button:hover { background: #1b8cff; }

 #message {
    font-style:italic;
   color: white;
   font-size: 30px;}
 

/* canvas { */
  /* border: 2px solid #721010; */
   /* display: block;} */

/* #overlay { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 600px; */
  /* height: 600px; */
  /* background: rgba(0, 0, 0, 0.7); */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center; */
  /* align-items: center;}  */

/* #overlay.hidden { */
  /* display: none;} */

 
#restart {
  padding: 10px 20px;
  background: #2196f3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
  