/* /static/css/daily-popup.css */
.daily-pop-mask {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(20, 24, 40, 0.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.daily-pop-mask.is-open { opacity: 1; pointer-events: auto; }

.daily-pop {
  width: 100%; max-width: 420px;
  background: #fff; border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(20, 30, 80, 0.3);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}
.daily-pop-mask.is-open .daily-pop { transform: translateY(0) scale(1); }

.daily-pop-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: #999; padding: 4px;
}
.daily-pop-close:hover { color: #444; }

/* little sample card up top so they see what they'll get */
.daily-pop-card {
  background: #F3A4A1; border-radius: 12px; padding: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,.1); margin-bottom: 18px;
}
.daily-pop-card .to {
  font-size: 13px; color: #333; font-weight: 500;
  padding-bottom: 5px; border-bottom: 1px solid #000;
}
.daily-pop-card .msg {
  font-size: 14px; color: #222; line-height: 1.55; margin: 10px 0 0;
}

.daily-pop h2 {
  margin: 0 0 8px; font-size: 20px; color: #1c2333; line-height: 1.3;
}
.daily-pop p.lead {
  margin: 0 0 16px; font-size: 14px; color: #555; line-height: 1.6;
}
.daily-pop form { display: flex; flex-direction: column; gap: 10px; }
.daily-pop input[type="email"] {
  width: 100%; padding: 13px 14px; border-radius: 10px;
  border: 1px solid #d4d7e0; font-size: 15px; outline: none;
}
.daily-pop input[type="email"]:focus { border-color: #4769fc; }
.daily-pop button.submit {
  width: 100%; padding: 13px; border: none; border-radius: 10px;
  background: #4769fc; color: #fff; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s ease;
}
.daily-pop button.submit:hover { background: #0056b3; }
.daily-pop button.submit:disabled { opacity: 0.6; cursor: default; }

.daily-pop .fine {
  margin: 12px 0 0; font-size: 11.5px; color: #999; line-height: 1.5; text-align: center;
}
.daily-pop .fine a { color: #4769fc; text-decoration: underline; }

.daily-pop .result {
  margin: 4px 0 0; font-size: 14px; line-height: 1.5; text-align: center;
}
.daily-pop .result.ok { color: #1c7a3e; }
.daily-pop .result.err { color: #c0392b; }

.daily-pop .later {
  display: block; margin: 12px auto 0; background: none; border: none;
  color: #999; font-size: 13px; cursor: pointer; text-decoration: underline;
}
@media (max-width: 480px) {
  .daily-pop { padding: 22px 18px 18px; }
}
