@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body {
font-family: "OSwald", sans-serif !important;
}

form {
    font-family: "Inter", sans-serif !important;
}
/* Custom animations for TV display */
@keyframes priceGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2), 0 0 16px rgba(59, 130, 246, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3), 0 0 24px rgba(59, 130, 246, 0.15);
    transform: scale(1.005);
  }
}

@keyframes softPulse {
  0%, 100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.price-animate {
  animation: priceGlow 4s ease-in-out infinite, softPulse 3s ease-in-out infinite, breathe 2.5s ease-in-out infinite;
}