/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

/* Modal content box */
.modal-content {
  background-color: #F0ECE4;
  color: #000000;
  padding: 35px 25px;
  width: 90%;
  max-width: 400px;
  margin: 10% auto;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  animation: slideUp 0.4s ease;
}
*/
/* Title style */
.modal-contentx h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

/* Promo code style */
.promo-codex {
  font-size: 24px;
  background-color: #ffffff;
  color: #000000;
  padding: 15px 25px;
  border: 2px dashed #FD312E;
  border-radius: 10px;
 /* display: inline-block;*/
 margin: 25px 0;
  word-break: break-word;
}

/* Copy button */
 #copyBtn{
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #FD312E;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#copyBtn:hover {
  background-color: #d62824;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
