.elementor-4509 .elementor-element.elementor-element-fc71735{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8b5cadd */.promo-page {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4f8fb, #dfeef7);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.promo-page .confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.promo-page .confetti {
  position: absolute;
  top: -20px;
  width: 12px;
  height: 22px;
  opacity: 0.9;
  animation: fall linear forwards;
  border-radius: 3px;
}

.promo-page .card {
  max-width: 680px;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
  animation: cardEnter 1s ease-out;
}

.promo-page .badge {
  display: inline-block;
  background: #0b6aa2;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out;
}

.promo-page h1 {
  font-size: 2.2rem;
  color: #12344d;
  margin-bottom: 18px;
  line-height: 1.2;
  animation: fadeUp 1.1s ease-out;
}

.promo-page .discount {
  font-size: 4rem;
  font-weight: 800;
  color: #0b6aa2;
  margin: 18px 0;
  animation: popIn 1.2s ease-out;
}

.promo-page p {
  font-size: 1.1rem;
  color: #4a5a67;
  line-height: 1.6;
  margin-bottom: 14px;
  animation: fadeUp 1.25s ease-out;
}

.promo-page .brand {
  margin-top: 28px;
  font-size: 1rem;
  font-weight: bold;
  color: #12344d;
  animation: fadeUp 1.35s ease-out;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(var(--drift), 110vh, 0) rotate(720deg);
  }
}

@media (max-width: 600px) {
  .promo-page .card {
    padding: 32px 22px;
  }

  .promo-page h1 {
    font-size: 1.7rem;
  }

  .promo-page .discount {
    font-size: 3rem;
  }

  .promo-page p {
    font-size: 1rem;
  }
}/* End custom CSS */