.email-prompt {
  position: fixed;
  top: 16px; /* just below header */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(#C00093, #8918E4);
  color: white;
  padding: 0 1rem 1rem 1rem;
  border-radius: 6px;
  z-index: 3000;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  animation: slide-down 0.3s ease;
}

.email-prompt .prompt-buttons {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.email-prompt button {
  background: white;
  color: #8918E4;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.email-prompt button:hover {
  background: #ddd;
}

.email-prompt.fade-out {
  animation: fade-out 0.5s forwards;
}

@keyframes slide-down {
  from { transform: translate(-50%, -120%); }
  to { transform: translate(-50%, 0); }
}

@keyframes fade-out {
  to { opacity: 0; transform: translate(-50%, -120%); }
}
