.acb-giveaway-hero {
  background-color: #222222;
  height: 418px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  margin-bottom: 149px;
}

.acb-giveaway-hero__heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}

.acb-giveaway-hero__heading span:first-child {
  font-family: "futura-pt-bold", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.4px;
  text-transform: uppercase;
  color: #E9E4DA;
  mix-blend-mode: luminosity;
  /* Animation for "ENTER THE" */
  animation: slideInScaleGentle 0.8s ease-out 0.2s both;
}

.acb-giveaway-hero__heading span:last-child {
  font-family: "alkaline", sans-serif;
  font-weight: 700;
  color: #EF3824;
  font-size: 120px;
  line-height: 80%;
  text-align: center;
  text-transform: lowercase;
  /* Animation for "giveaway" */
  animation: slideInScale 0.9s ease-out 0.6s both;
}

.acb-giveaway-hero__image {
  transform: translateY(-50px);
  position: relative;
  /* Animation for image */
  animation: fadeInBounce 1s ease-out 1.1s both;
}

.acb-giveaway-hero__image::after {
  content: "";
  display: block;
  width: 351px;
  height: 351px;
  border-radius: 50%;
  background: #E9E4DA;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50px);
  z-index: -1;
  /* Animation for background circle */
  animation: fadeInScale 0.8s ease-out 1.3s both;
}

/* Keyframe animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInScaleGentle {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-50px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(-50px) scale(1);
  }
}

@keyframes fadeInBounceMobile {
  0% {
    opacity: 0;
    transform: translateY(0px) scale(0.8);
  }
  60% {
    opacity: 0.8;
    transform: translateY(0px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50px) scale(1);
  }
}

@media (max-width: 768px) {
  .acb-giveaway-hero {
    height: 240px;
    padding-top: 50px;
    margin-bottom: 130px;
  }

  .acb-giveaway-hero__heading span:first-child {
    font-size: 28px;
    letter-spacing: 2.8px;
    animation: slideInScaleGentle 0.6s ease-out 0.1s both;
  }

  .acb-giveaway-hero__heading span:last-child {
    font-size: 72px;
    animation: slideInScale 0.7s ease-out 0.4s both;
  }

  .acb-giveaway-hero__image {
    transform: translateY(0px);
    animation: fadeInBounceMobile 0.8s ease-out 0.8s both;
  }

  .acb-giveaway-hero__image::after {
    width: 202px;
    height: 202px;
    transform: translate(-50%, -50px);
    animation: fadeInScale 0.6s ease-out 1s both;
  }

  .acb-giveaway-hero__image img {
    width: 282px;
    height: 282px;
    transform: translateY(-40px);
  }
}