/* 1) Remove the old gradient backdrop… */

:root {
  --primary-gradient: linear-gradient(135deg, #2513fb, #00bfff);
  --btn-padding: 0.75em 2em;
  --btn-radius: 50px;
}

#email-dialog button[type="submit"] {
  background: var(--primary-gradient);
  font-weight: bold;
}

#email-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

#email-dialog #subscribe-title {
  font-weight: bold;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

#email-dialog {
  border: none;
  border-radius: 5px;
  padding: 3.5rem;
  max-width: 360px;
  width: 90%;
  background: #0d0c23db;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: auto;;
  color: #fff;
}

#email-dialog .form-control {
  background-color: black;
  color:#fff;
  font-weight: 900;
}

#email-dialog h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

#email-dialog p {
  margin-bottom: 1rem;
  
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

dialog:not([open]) {
  display: none;
}

#open-subscribe {
  display: block;
  margin: 2rem auto;          /* center + some vertical breathing room */
  padding: 0.75em 2em;        /* nice tappable size */
  background: linear-gradient(135deg, #2513fb, #00bfff);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;        /* pill-shape */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  
  margin-bottom:100px ;
}

#open-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

#open-subscribe:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.5);
}
