/* Boot loading state. Visually identical to App.vue's .loading-screen
   so the Vue handoff is imperceptible — no FOUC, no SEO-content flash.
   Crawler signal is carried by the h1 text, meta tags, and json-ld. */
html, body { background: #0a0a0b; margin: 0; padding: 0; }
body {
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0, rgba(0,0,0,0.05) 2px, transparent 2px, transparent 8px),
    radial-gradient(circle at center, #18191b, #0a0a0b);
  color: #e6e6e6;
  font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.boot {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.boot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}
.boot-uno {
  font-family: 'Black Ops One', 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  letter-spacing: 0.05em;
  color: #e6e6e6;
  line-height: 1;
}
.boot-nomercy {
  font-family: 'Black Ops One', 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  letter-spacing: 0.3em;
  color: #ff2a2a;
  text-shadow: 0 0 12px rgba(255, 42, 42, 0.5);
  line-height: 1;
}
.boot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2a2a;
  box-shadow: 0 0 16px #ff2a2a;
  animation: bootPulse 1.4s ease-in-out infinite;
}
@keyframes bootPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.6); opacity: 1; }
}
.boot-text {
  font-family: 'Chakra Petch', monospace;
  font-size: 0.75rem;
  color: #71717a;
  letter-spacing: 0.4em;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .boot-dot { animation: none; opacity: 0.8; }
}
/* Crawler-visible SEO content, hidden from sighted users. Kept for
   old crawlers that don't run JS; modern Googlebot reads Vue output. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
