#boot-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #050506;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}

#boot-screen.boot-screen--hide {
  opacity: 0;
  pointer-events: none;
}

.boot-screen__content {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(13px, 2vw, 16px);
  color: #d6d6e0;
  width: 90%;
  max-width: 560px;
}

.boot-line {
  margin: 0 0 10px;
  min-height: 1.4em;
  white-space: pre;
}

.boot-line--ok {
  color: #8b5cf6;
}

.boot-cursor {
  display: inline-block;
  color: #8b5cf6;
  animation: bootCursorBlink 0.9s step-end infinite;
}

@keyframes bootCursorBlink {
  50% { opacity: 0; }
}
