/* boot-overlay.css */

#boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10vw;
}

.boot-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 300;
}

.boot-line {
  display: flex;
  align-items: baseline;
  white-space: pre;
  opacity: 0;
}

.bl-label  { color: #B8B8B0; min-width: 300px; }
.bl-dots   { color: #383834; }
.bl-status { margin-left: 4px; }
.bl-status.ok   { color: #6AAD6A; }
.bl-status.warn { color: #C4973A; }

.boot-logo {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #F0F0E8;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(240, 240, 232, 0.2);
}