html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.cyber-hud {
  pointer-events: none;
  z-index: 1200;
  color: #7ef9ff;
  mix-blend-mode: screen;
  font-family: Encode Sans, Andada Pro, Amatic SC, system-ui, sans-serif;
  position: fixed;
  inset: 0;
}

.cyber-hud__panel {
  backdrop-filter: blur(6px);
  background: linear-gradient(135deg, #090c14cc, #0b2034b3);
  border: 1px solid #0ff6;
  border-radius: 8px;
  min-width: 220px;
  padding: 12px 14px;
  position: absolute;
  top: 14px;
  left: 14px;
  box-shadow: 0 0 18px #00ffff47, inset 0 0 12px #00ffff1f;
}

.cyber-hud__title {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9df3ff;
  margin-bottom: 6px;
  font-size: 12px;
}

.cyber-hud__status {
  color: #e0f7ff;
  margin-bottom: 8px;
  font-size: 13px;
}

.cyber-hud__metrics {
  color: #8edfff;
  opacity: .9;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.4;
}

.cyber-hud__progress {
  background: #00ffff1a;
  border: 1px solid #00ffff59;
  border-radius: 999px;
  width: 100%;
  height: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px #0ff3;
}

.cyber-hud__progress-bar {
  background: linear-gradient(90deg, #00f0ff, #7affff);
  width: 0%;
  height: 100%;
  transition: width .25s;
  box-shadow: 0 0 12px #00ffffb3;
}

.cyber-hud__tracker-row {
  color: #a1e6ff;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  display: flex;
}

.cyber-hud__tracker-dot {
  background: #ff3d81;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 10px #ff3d81b3;
}

.cyber-hud__tracker-dot.loaded {
  background: #27ff9f;
  box-shadow: 0 0 12px #27ff9fcc;
}

.cyber-hud__tracker-dot.visible {
  border: 1px solid #fff;
}

.cyber-hud__matches {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.cyber-hud__reticle {
  border: 1px solid #0ffc;
  width: 32px;
  height: 32px;
  animation: 1.6s ease-in-out infinite hud-pulse;
  position: absolute;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px #0ffc;
}

@keyframes hud-pulse {
  0% {
    opacity: .7;
    box-shadow: 0 0 8px #00ffff80;
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 16px #00ffffe6;
  }

  100% {
    opacity: .7;
    box-shadow: 0 0 8px #00ffff80;
  }
}

.circle {
  opacity: .8;
  background: red;
  border-radius: 10vh;
  width: 8vh;
  height: 8vh;
  margin: auto;
  position: absolute;
  inset: 80% 0 0;
}

.circle:before {
  content: "";
  border: 2vh solid #0000;
  border-left: 4vh solid #fff;
  border-right-width: 0;
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 -5px 0 0;
}

.circle:active {
  opacity: 1;
}
/*# sourceMappingURL=ar.2f2666ad.css.map */
