/* ==========================================================================
   ENAB STATION — Subtle Neon & Interactive Micro-Effects
   Refined, modern, easy on the eyes, never blinding or excessive
   ========================================================================== */

/* Subtle Neon Glow Utilities */
.neon-glow-amber {
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.neon-glow-green {
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
}

.neon-border-hover {
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.neon-border-hover:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 24px -4px rgba(245, 158, 11, 0.18);
}

/* Category Card Subtle Neon Ambient Pulse */
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.4) 0%, transparent 60%, rgba(245, 158, 11, 0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--transition-smooth);
}

.category-card:hover::after {
  opacity: 1;
}

/* Status Indicator Dot Glow (Lit vs Unlit) */
.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-inline-end: 6px;
  vertical-align: middle;
}

.status-indicator.lit {
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981, 0 0 14px rgba(16, 185, 129, 0.5);
  animation: subtlePulse 2.5s infinite;
}

.status-indicator.unlit {
  background-color: #64748b;
  box-shadow: none;
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

/* Curved Header Subtle Bottom Shadow & Shape Styling */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.35), transparent);
  pointer-events: none;
}

/* Smooth Focus Rings */
input:focus-visible, button:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-amber);
  outline-offset: 2px;
}
