/* 電脳館 fullscreen shell (dennokan_play.html) — standalone on purpose:
   the engine page loads none of style.css, just this file. Mirrors the
   Godot export's generated boot styles, restyled to the site palette. */

html, body, #canvas {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  color: #f4efe9;
  background-color: #14090b;
  overflow: hidden;
  touch-action: none;
}

#canvas {
  display: block;
}

#canvas:focus {
  outline: none;
}

.dn-noscript {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 17px;
  letter-spacing: .08em;
}

#status, #status-splash, #status-progress {
  position: absolute;
  left: 0;
  right: 0;
}

#status {
  top: 0;
  bottom: 0;
  background-color: #14090b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

#status-splash {
  top: 0;
  bottom: 0;
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

#status-progress, #status-notice, #status-exit {
  display: none;
}

#status-progress {
  bottom: 10%;
  width: min(50%, 420px);
  margin: 0 auto;
  accent-color: #6d1421;
}

#status-notice, #status-exit {
  z-index: 1;
}

#status-notice {
  background-color: #2b1216;
  border: 1px solid #6d1421;
  border-radius: 4px;
  color: #f4efe9;
  line-height: 1.8;
  letter-spacing: .06em;
  margin: 0 2rem;
  overflow: hidden;
  padding: 1rem 1.5rem;
  text-align: center;
}

#status-exit {
  margin-top: 18px;
  text-align: center;
}

#status-exit a {
  color: #e0b7ab;
  letter-spacing: .3em;
  text-indent: .3em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

#status-exit a:hover {
  color: #fff;
}
