html,
body {
  height: 100%;
  margin: 0;
}

.dark body {
  background: #0b0f14;
}

.light body {
  background: #f5f7fa;
}

#boot-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  transition: opacity 200ms ease;
}

.dark #boot-splash {
  background: #0b0f14;
  color: #f1f5f9;
}

.light #boot-splash {
  background: #f5f7fa;
  color: #0f172a;
}

#boot-logo {
  width: 128px;
  height: 128px;
  border-radius: 34px;
  background: transparent;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
}

.dark #boot-logo {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

#boot-logo-img {
  width: 112px;
  height: 112px;
  border-radius: 28px;
}

#boot-name {
  font-family: "Geist Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 18px;
  opacity: 0.95;
}

#boot-splash.hidden {
  opacity: 0;
  pointer-events: none;
}

#boot-problem {
  max-width: 520px;
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit;
  font-family: "Geist Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

#boot-problem-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 6px;
}

#boot-problem-body {
  font-size: 12px;
  opacity: 0.92;
  line-height: 1.35;
  white-space: pre-wrap;
}
