/* ===== Loader Overlay ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.radar-spinner {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-top: 2px solid var(--accent-gold, #ffcc00);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--font-head, 'Teko', sans-serif);
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
}

.loader-sub {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: var(--text-muted, #8a9bb8);
  margin-top: 6px;
  letter-spacing: 1px;
}
