/* ============================================================
   StreamVerde Website — Animations & Keyframes
   website/css/animations.css
   ============================================================ */

/* ── Orb float ── */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -60px) scale(1.05); }
  66%       { transform: translate(-30px, 40px) scale(0.95); }
}

/* ── TV glow pulse ── */
@keyframes tvGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(0,255,135,0.18), 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05); }
  50%       { box-shadow: 0 0 90px rgba(0,255,135,0.25), 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05); }
}

/* ── Badge live blink ── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Badge pulse ring ── */
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,135,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(0,255,135,0); }
}

/* ── Floating badge ── */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Progress stream ── */
@keyframes progressAnim {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ── Play button pulse ── */
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 12px #00ff87; }
  50%       { box-shadow: 0 0 22px rgba(0,255,135,0.6); }
}

/* ── Thumb shimmer ── */
@keyframes thumbShimmer {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* ── Fade-in scroll reveal ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
