/* LOOPHUNTERS — cursor aura + audio toggle (injected) */

.lh-aura-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9500;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.lh-audio-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-cyan);
  background: rgba(18, 18, 31, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.lh-audio-toggle:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(125, 250, 255, 0.25);
}
.lh-audio-toggle .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dim);
  transition: background 0.25s, box-shadow 0.25s;
}
.lh-audio-toggle.on {
  border-color: var(--cyan);
  color: var(--cyan);
}
.lh-audio-toggle.on .dot {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.lh-audio-hint {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9998;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
  white-space: nowrap;
}
.lh-audio-hint.show { opacity: 0.8; }

/* keep aura behind the toggle button visually */
.lh-audio-toggle, .lh-audio-hint { isolation: isolate; }

/* ============================================
   EASTER EGG — Flashlight Reveal
   ============================================ */

.lh-reveal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9400;
}

/* Void panel — dark section with hidden cosmic scene */
.lh-void-section {
  position: relative;
  height: 440px;
  background: #06060e;
  overflow: hidden;
  border-top: 1px solid rgba(90, 90, 114, 0.12);
  border-bottom: 1px solid rgba(90, 90, 114, 0.12);
}
.lh-void-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--dim-2);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.6s;
}

/* Discovery counter — bottom left */
.lh-discovery {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 31, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transition: border-color 0.3s, color 0.3s, opacity 0.5s, box-shadow 0.3s;
}
.lh-discovery.visible { opacity: 1; }
.lh-discovery.active {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 18px rgba(255, 92, 240, 0.2);
}
.lh-discovery .icon { font-size: 0.9rem; }

@media (max-width: 500px) {
  .lh-void-section { height: 320px; }
}
