/* Banner container */
.promo-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 230px;
  background: linear-gradient(135deg,#ff6a00,#ee0979);
  color: #fff;
  padding: 43px 20px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: slideUp 0.8s ease;
  font-family: Arial, sans-serif;
  text-align: center; /* Center all text */
}

/* Close Button */
.promo-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  color: #ee0979;
  border: none;
  font-size: 34px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Promo content */
.promo-title {
  margin: 0 0 10px 0;
  font-weight: bold;
  color:#fff;
  text-transform: uppercase;
  font-size: 34px;
}

.promo-text {
  margin: 0 0 15px 0;
  font-size: 16px;
  color:#fff;
}

/* Promo button with bounce every 5 seconds */
.promo-btn {
  display: inline-block;
  background: #fff;
  color: #ee0979;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  animation: bounce 0.8s ease-in-out infinite;
  animation-delay: 5s;
text-transform: uppercase;
}

/* Animations */
@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}