/* ============================================
   BOOT.CSS — Boot sequence terminal styles
   ============================================ */

.boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  font-family: var(--font-mono);
  cursor: pointer;
  overflow: hidden;
}

.boot-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.02) 2px,
    rgba(0, 240, 255, 0.02) 4px
  );
  pointer-events: none;
  animation: scanline-move 8s linear infinite;
}

@keyframes scanline-move {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.boot-screen.fade-out {
  animation: boot-dissolve 1s ease-out forwards;
}

@keyframes boot-dissolve {
  0% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

.boot-content {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.boot-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  opacity: 0;
  color: #888;
}

.boot-line.visible {
  opacity: 1;
}

.boot-line .command {
  color: #ccc;
  flex: 1;
}

.boot-line .status {
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.boot-line .status.ok {
  color: var(--green);
  opacity: 1;
}

.boot-prompt {
  color: var(--cyan);
  font-size: 0.85rem;
}

.boot-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
  opacity: 0.6;
  animation: blink 2s step-end infinite;
}

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