/* ===== BOOT SEQUENCE ===== */
#bootSequence {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 1;
  transition: opacity 1s;
}

#bootSequence.hidden {
  opacity: 0;
  pointer-events: none;
}

.boot-line {
  color: #00ff00;
  font-size: 18px;
  margin: 2px 0;
  opacity: 0;
  animation: fadeIn 0.1s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
