/* ============================================
   PumpOS Boot Screen
   ============================================ */

#pumpos-boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  transition: opacity 0.6s ease;
}

#pumpos-boot-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

#pumpos-boot-ascii {
  color: #00ff88;
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(6px, 1.4vw, 14px);
  line-height: 1.2;
  white-space: pre;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

#pumpos-boot-status {
  color: #f5c518;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 0 6px rgba(245, 197, 24, 0.3);
}

#pumpos-boot-bar-wrapper {
  font-family: 'Share Tech Mono', monospace;
  font-size: 18px;
  color: #00ff88;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.3);
}

#pumpos-boot-bar-fill {
  color: #00ff88;
}

#pumpos-boot-bar-empty {
  color: #1a3a2a;
}
