.newsletter-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 2000;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: 0.3s ease;
  font-family: 'Instrument Sans', sans-serif;
}
.newsletter-overlay.show { opacity: 1; visibility: visible; }
.newsletter-modal {
  background: #fff; width: 90%; max-width: 450px;
  border-radius: 12px; padding: 40px; text-align: center;
  position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateY(20px); transition: 0.3s ease;
}
.newsletter-overlay.show .newsletter-modal { transform: translateY(0); }
.newsletter-close {
  position: absolute; top: 15px; right: 15px; cursor: pointer;
  font-size: 20px; color: #888; transition: 0.2s;
}
.newsletter-close:hover { color: #111; }
.newsletter-content h2 { margin: 0 0 10px 0; font-size: 22px; color: #111; }
.newsletter-content p { color: #555; font-size: 15px; margin-bottom: 25px; line-height: 1.5; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  padding: 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; text-align: center;
}
.newsletter-form input:focus { border-color: #111; outline: none; }
.newsletter-btn {
  background: #111; color: #fff; border: none; padding: 14px; border-radius: 6px;
  font-weight: bold; font-size: 15px; cursor: pointer; transition: background 0.3s;
}
.newsletter-btn:hover { background: #333; }
.newsletter-no-thanks {
  background: none; border: none; color: #888; text-decoration: underline;
  margin-top: 15px; cursor: pointer; font-size: 13px; font-weight: 600;
}
.newsletter-no-thanks:hover { color: #111; }