/* =============================================
   QuickCashCasinos.com — Crash Graph Animation
   ============================================= */

/* Animated number counter */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Crash line draw animation */
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
.crash-line {
  stroke-dasharray: 1000;
  animation: drawLine 2s ease-out forwards;
}

/* Bust flash */
@keyframes burstFlash {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.5); }
}
