/**
 * FORRE_DARK - Animations
 */

/* Flash Sweep - Premium button effect */
.tw-flash-sweep {
  position: relative;
  overflow: hidden;
}

.tw-flash-sweep::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 58%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0) 80%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: flashSweep 4.8s linear infinite;
  pointer-events: none;
}

@keyframes flashSweep {
  0% { left: -120%; }
  100% { left: 160%; }
}

/* Active Line Pulse - Navbar active indicator */
@keyframes twActiveLinePulse {
  0%, 100% {
    box-shadow:
      0 0 5px rgba(39,150,242,0.50),
      0 0 10px rgba(39,150,242,0.12);
    opacity: 0.92;
  }
  50% {
    box-shadow:
      0 0 7px rgba(39,150,242,0.72),
      0 0 14px rgba(39,150,242,0.18);
    opacity: 1;
  }
}