@charset "UTF-8";

/* src/styles.scss */
:root {
  --space-abyss: #05070f;
  --space-deep: #0a0e1a;
  --space-mid: #0e1424;
  --nebula-core: #1b2a4a;
  --hull-plate: #161d2e;
  --hull-plate-hi: #1d2740;
  --hull-edge: #2a3550;
  --hull-edge-lit: #3d557f;
  --hull-bare:
    40,
    52,
    78;
  --ink: #e7ecf5;
  --ink-strong: #f4f7ff;
  --ink-line: #060912;
  --muted: #8a95ad;
  --me: #4f86e0;
  --me-hi: #7fb0ff;
  --foe: #e0564f;
  --foe-hi: #ff8a84;
  --ok: #57b368;
  --ok-hi: #7fdc92;
  --bad: #e0564f;
  --warn: #e0c84f;
  --impact: #ffb347;
  --impact-hot: #fff2c8;
  --hud-radius: 12px;
  --hud-bevel: 10px;
  --hud-glow: 0 0 18px;
  --font-hud: system-ui, sans-serif;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--space-deep);
  color: var(--ink);
  font-family: var(--font-hud);
}
.hud-panel {
  --panel-accent: var(--hull-edge);
  position: relative;
  background:
    linear-gradient(
      160deg,
      var(--hull-plate-hi),
      var(--hull-plate));
  border: 1px solid var(--panel-accent);
  border-radius: var(--hud-radius);
  clip-path: polygon(var(--hud-bevel) 0, 100% 0, 100% calc(100% - var(--hud-bevel)), calc(100% - var(--hud-bevel)) 100%, 0 100%, 0 var(--hud-bevel));
}
.hud-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--muted);
}
.hud-gauge {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.hud-gauge__fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}
@keyframes star-twinkle {
  0%, 100% {
    opacity: var(--star-o, 0.6);
  }
  50% {
    opacity: calc(var(--star-o, 0.6) * 0.35);
  }
}
@keyframes core-pulse {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}
@keyframes thruster-flare {
  0%, 100% {
    opacity: 0.55;
    transform: scaleY(0.9);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}
@keyframes beam-fire {
  0% {
    stroke-dashoffset: var(--beam-len, 400);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
@keyframes impact-flash {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  25% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.beams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.beam {
  stroke-width: 0.8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px currentColor);
  stroke-dasharray: 60 100;
  --beam-len: 100;
  animation: beam-fire 0.75s ease-out forwards;
}
.missile-shot {
  filter: drop-shadow(0 0 3px currentColor);
  transform-box: view-box;
}
.missile-shot--from-me {
  animation: missile-me 0.85s ease-in forwards;
}
.missile-shot--from-foe {
  animation: missile-foe 0.85s ease-in forwards;
}
@keyframes missile-me {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateY(-44px);
    opacity: 1;
  }
}
@keyframes missile-foe {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateY(44px);
    opacity: 1;
  }
}
.impact {
  fill: var(--impact-hot);
  stroke: var(--impact);
  stroke-width: 1.2;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: impact-flash 0.7s ease-out 0.35s forwards;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
