/* Custom animations for Ticket Claim flow */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.font-outfit {
  font-family: 'Outfit', sans-serif;
}

/* Scrollbar hiding utilities */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* animated scanner laser line */
@keyframes laser-scan {
  0% {
    left: 10%;
    opacity: 0.8;
  }
  50% {
    left: 90%;
    opacity: 1;
  }
  100% {
    left: 10%;
    opacity: 0.8;
  }
}

.laser-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 20px #22c55e;
  animation: laser-scan 3s infinite ease-in-out;
}

/* Page transitions */
.fade-in {
  animation: fadeIn 0.2s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
