
#newsletter-interstitial-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49,4,57,0.65);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  z-index: 100002;
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter-interstitial-message.newsletter-message-popup {

  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  letter-spacing: 0.5px;
}

#newsletter-interstitial-message.newsletter-message-error {
  color: #ffb3b3;
  background: rgba(49,4,57,0.65);
}/* Style pour la croix de fermeture du modal newsletter */
#newsletter-interstitial-close {
  color: #888;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

#newsletter-interstitial .newsletter-promo {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 0 12px 0;
  display: block;
  font-weight: 700;
  line-height: 1.2;
}
#newsletter-interstitial .newsletter-promo-sub {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 0.5px;


}

/* newsletter-interstitial.css : style modal inspiré de la connexion requise de voyance.js */
#newsletter-interstitial {
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(49,4,57,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: opacity 0.3s;
}

#newsletter-interstitial .newsletter-modal {
  background: #ffffff02;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(49,4,57,0.18), 0 2px 12px rgba(49,4,57,0.10);
  padding: 32px 24px 16px 24px;
  max-width: 420px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  color: #fff;
  position: relative;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: newsletter-fadein 0.5s cubic-bezier(.4,1.6,.6,1) 1;
  overflow: visible;
}

#newsletter-interstitial .newsletter-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 0;
  overflow: visible;
}
#newsletter-interstitial h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 0;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px #310439cc, 0 1px 0 #6c0d9b;
  line-height: 1.2;
}
#newsletter-interstitial p {
  font-size: 1.08rem;
  margin-bottom: 18px;
  color: #fff;
  text-align: left;
}
#newsletter-interstitial-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 10px;
}
#newsletter-interstitial-email {
  padding: 12px;
  border-radius: 22px;
  font-size: 1.08rem;
  width: 100%;
  max-width: 360px;
  background: #f7f2fa;
  color: #310439;
  box-sizing: border-box;
  margin: 0 auto 0 auto;
  display: block;
  height: 44px;
}
#newsletter-interstitial-email:focus {
  border: 1.5px solid #6c0d9b;
  outline: none;
}
#newsletter-interstitial-form button[type="submit"] {
  background: #6c0d9b;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0 18px;
  font-size: 1.08rem;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  height: 44px;
  margin: 0 auto 0 auto;
  display: block;
}

#newsletter-interstitial-message {
  margin-top: 8px;
  font-size: 1.05rem;
  color: #c7ffde;
  min-height: 22px;
  font-weight: 500;
  text-align: left;
}
#newsletter-interstitial-decline {
  margin-top: 18px;
  background: none;
  border: none;
  color: #b014fd;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: underline;
  align-self: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
#newsletter-interstitial-decline:hover {
  color: #fff;
}
@keyframes newsletter-fadein {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  #newsletter-interstitial .newsletter-modal {
    padding: 18px 6px 10px 6px;
    max-width: 95vw;
    border-radius: 18px;
  }
  #newsletter-interstitial .newsletter-promo {
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 10px 0 10px 0;
  }

  #newsletter-interstitial .newsletter-promo-sub {
    font-size: 0.95rem;
    margin-top: 4px;
  }
}