/* =================================================
   BOOT SPLASH — full-screen terminal-style boot
   ================================================= */
.boot {
  position: fixed; inset: 0; z-index: 9999;
  background: #050a05;
  color: var(--accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px;
  font-size: 13px;
  line-height: 1.6;
  transition: opacity 0.5s ease;
}
.boot.fade { opacity: 0; pointer-events: none; }
.boot::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg,
    transparent 0, transparent 2px,
    rgba(198,245,66,.04) 2px, rgba(198,245,66,.04) 3px);
  pointer-events: none;
}
.boot-logo {
  font-family: 'Geologica', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-shadow:
    3px 3px 0 var(--hover),
    6px 6px 0 var(--primary);
  margin-bottom: 28px;
}
.boot-logo small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-shadow: none;
  letter-spacing: 4px;
  margin-top: 10px;
  text-align: center;
}
.boot-log { width: 460px; font-size: 11px; }
.boot-log .line {
  display: flex; gap: 10px; margin-bottom: 4px;
  opacity: 0;
}
.boot-log .line .ok { color: var(--accent); }
.boot-progress {
  margin-top: 22px;
  width: 460px;
  border: 2px solid var(--accent);
  height: 14px;
  position: relative;
  overflow: hidden;
}
.boot-progress .fill {
  width: 0%; height: 100%;
  background: var(--accent);
  background-image: repeating-linear-gradient(90deg, transparent 0 8px, rgba(0,0,0,0.2) 8px 10px);
  transition: width 0.3s ease;
}
.boot-msg {
  margin-top: 14px;
  font-size: 11px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.boot-cursor::after { content: "▌"; animation: blink 1s steps(2) infinite; }
.boot-press {
  margin-top: 18px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 2px;
  animation: blink 1.1s steps(2) infinite;
  display: none;
}
.boot-press.show { display: block; }
@keyframes blink { 50% { opacity: 0; } }
