/* ==========================================================================
   NEXUS STORE — MICRO-ANIMATIONS & INTERACTION STATES
   Smooth, High-FPS Hardware Accelerated Transitions (Natural & Crisp)
   ========================================================================== */

@keyframes pulseSubtle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.9;
  }
}

@keyframes liveStatusBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  display: inline-block;
  animation: liveStatusBlink 1.8s infinite ease-in-out;
}

.transition-all {
  transition: all var(--transition-normal);
}
