/* Vibrant Section */
.launch-offer {
  position: relative;
  background: linear-gradient(145deg, #c2e54f, #7ee8fa);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Rolling Ball */
.rolling-ball {
  width: 40px;
  height: 40px;
  background-color: #ff6b6b;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: -50px;
  animation: roll 10s linear infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes roll {
  0% {
    left: -60px;
    transform: rotate(0deg);
  }
  50% {
    left: 80%;
    transform: rotate(360deg);
  }
  100% {
    left: 110%;
    transform: rotate(720deg);
  }
}

/* Offer Box Styling */
.offer-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 700px;
  margin: auto;
  padding: 50px 40px;
  position: relative;
  animation: bounceIn 1.2s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.offer-text h2 {
  color: #111;
  font-size: 32px;
  margin-bottom: 20px;
}

.offer-text p {
  color: #333;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.highlight {
  color: #28a745;
  font-weight: bold;
}

.cta-btn {
  background: #ffda2a;
  color: #000;
  padding: 15px 30px;
  font-size: 17px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background-color: #ffc107;
  transform: scale(1.05);
  color: #222;
  cursor: pointer;
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: hsl(var(--hue, 200), 80%, 50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: fall 1.5s linear forwards;
  opacity: 0.9;
}

.launch-offer {
  /* REMOVE overflow: hidden; */
  overflow: visible;
  position: relative;
  z-index: 1;
}


@keyframes fall {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(100px) scale(0.5);
    opacity: 0;
  }
}

