/* Boot Screen */
#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #020204;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
}

#boot-output {
  flex: 1;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

.boot-line {
  animation: bootLineIn 0.05s ease;
  white-space: pre;
}

.boot-ok { color: var(--status-ok); }
.boot-warn { color: var(--status-warn); }
.boot-module { color: var(--text); }
.boot-accent { color: var(--accent-primary); font-weight: 700; }
.boot-welcome {
  color: var(--accent-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

#boot-progress {
  height: 3px;
  background: var(--bg-elevated);
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
}

#boot-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-primary);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--accent-glow-strong);
}

#boot-skip {
  text-align: center;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 12px;
  animation: blink 1.5s step-end infinite;
}

.boot-fade-out {
  animation: bootFadeOut 0.6s ease forwards;
}

@keyframes bootLineIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bootFadeOut {
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}

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

/* Hidden utility */
.hidden {
  display: none !important;
}
