html,
body {
  background-color: #000
}

@keyframes heroZoom {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.1)
  }
}

.hero-bg-animated {
  background-image: url('hero-bg-v2.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: heroZoom 20s infinite alternate ease-in-out
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

@keyframes cardPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 191, 4, 0.4)
  }

  70% {
    box-shadow: 0 0 0 20px rgba(239, 191, 4, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 191, 4, 0)
  }
}

.offer-card-pulse {
  animation: cardPulse 2s infinite
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.offer-card-float {
  animation: floatCard 6s ease-in-out infinite
}