/* ============================================================
   AiBull — EFFECTS: glows, shadows, borders, blur, motion
   The brand lives on neon rim-light and cosmic depth.
   ============================================================ */
:root {
  /* Neon glows (box-shadow / text glow) */
  --glow-green:   0 0 22px rgba(54, 245, 138, 0.55);
  --glow-cyan:    0 0 22px rgba(32, 220, 236, 0.50);
  --glow-blue:    0 0 22px rgba(59, 107, 255, 0.50);
  --glow-violet:  0 0 22px rgba(166, 92, 255, 0.50);
  --glow-gold:    0 0 22px rgba(240, 179, 35, 0.50);
  --glow-crimson: 0 0 22px rgba(229, 20, 43, 0.55);
  --glow-ember:   0 0 28px rgba(255, 106, 26, 0.55);

  /* Depth shadows */
  --shadow-panel: 0 10px 40px rgba(0, 0, 0, 0.55);
  --shadow-card:  0 16px 50px rgba(0, 0, 0, 0.50);
  --shadow-pop:   0 24px 70px rgba(0, 0, 0, 0.60);

  /* Hairline rings */
  --ring:        inset 0 0 0 1px var(--line);
  --ring-strong: inset 0 0 0 1px var(--line-strong);
  --ring-neon:   inset 0 0 0 1px var(--line-neon);

  /* Glass blur */
  --blur-sm: blur(8px);  /* @kind other */
  --blur:    blur(16px); /* @kind other */
  --blur-lg: blur(28px); /* @kind other */

  /* Motion — snappy, confident, no bounce */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);  /* @kind other */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur:        200ms; /* @kind other */
  --dur-slow:   360ms; /* @kind other */

  /* Texture overlays */
  --scanline: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px); /* @kind other */
}

/* Neon text utility */
.aib-glow-green { color: var(--neon-green); text-shadow: var(--glow-green); }
.aib-glow-gold  { color: var(--gold);       text-shadow: var(--glow-gold); }
.aib-glow-crimson { color: var(--crimson);  text-shadow: var(--glow-crimson); }
