html,
body {
  margin: 0;
  min-height: 100%;
  background: #090e0b;
  color: #ecfdf5;
}

#boot-fallback {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  background: #090e0b;
}

#boot-fallback.show {
  display: flex;
}

.boot-spin {
  width: 32px;
  height: 32px;
  border: 2px solid #064e3b;
  border-top-color: #34d399;
  border-radius: 50%;
  animation: boot-spin 0.8s linear infinite;
}

@keyframes boot-spin {
  to {
    transform: rotate(360deg);
  }
}

#boot-reload {
  display: none;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid #065f46;
  border-radius: 8px;
  background: #0c1a14;
  color: #6ee7b7;
  font-size: 14px;
  cursor: pointer;
}
