:root {
  color-scheme: dark;
  font-family: system-ui, sans-serif;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

#xmb-canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  outline: none;
}

#launch {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  background: #000;
  transition: opacity 300ms ease;
}

#launch.started {
  pointer-events: none;
  opacity: 0;
}

#start {
  min-width: 11rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 999px;
  color: white;
  background: rgb(255 255 255 / 12%);
  font: inherit;
  cursor: pointer;
}

#start:disabled {
  cursor: wait;
  opacity: 0.55;
}

#status {
  max-width: min(32rem, 80vw);
  margin: 0;
  color: rgb(255 255 255 / 70%);
  text-align: center;
}
