:root { color-scheme: dark; }
* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #0b0e14;
  color: #cdd6f4;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

#app {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 16px;
}

/* ゲーム画面。ドット絵をくっきり見せる */
#screen {
  background: #10141c;
  border: 1px solid #313244;
  border-radius: 6px;
  image-rendering: pixelated;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
}

/* 起動中の表示。起動が済んだら消える */
#loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #8a93a8;
  pointer-events: none;
}
#loading[hidden] { display: none; }
#loading[data-state="error"] { color: #f38ba8; }
