/*
  bsod.css — Windows-style Blue Screen of Death overlay
*/
.bsod-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #0000AA;
  color: #FFF;
  font-family: 'Perfect DOS VGA 437', 'Fixedsys', 'Terminal', monospace;
  font-size: 18px;
  line-height: 1.3;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 0 32px;
  letter-spacing: 0;
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
  text-rendering: optimizeSpeed;
}
.bsod-overlay.is-shutdown {
  background: #001f7a;
}
.bsod-overlay.is-failure {
  background: #0000AA;
}
.bsod-badge {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 18px;
  background: #fff;
  color: #001f7a;
  font-size: 0.95em;
}
.bsod-title {
  color: #FFF;
  font-size: 1.5em;
  margin-bottom: 1em;
  font-weight: bold;
  max-width: 860px;
}
.bsod-message {
  color: #FFF;
  font-size: 1em;
  margin-bottom: 2em;
  white-space: pre-line;
  max-width: 860px;
}
.bsod-footer {
  color: #FFF;
  font-size: 0.9em;
  margin-top: 2em;
  opacity: 0.8;
  max-width: 860px;
}
