/* Newsletter signup modal — shared across header.php-based pages and
   standalone game pages (games/streetle, games/time-machine). */
.wyn-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 20px;
}
.wyn-modal-backdrop.wyn-modal-hidden { display: none; }
.wyn-modal {
  background: #f4f1eb;
  border-top: 5px solid #c41230;
  border-bottom: 3px double #1a1a1a;
  max-width: 520px;
  width: 100%;
  padding: 36px 36px 28px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
.wyn-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #888;
  padding: 2px 6px;
  font-family: 'PT Sans', sans-serif;
}
.wyn-modal-close:hover { color: #1a1a1a; }
.wyn-modal-kicker {
  font-family: 'PT Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c41230;
  margin: 0 0 10px;
}
.wyn-modal-headline {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #1a1a1a;
}
.wyn-modal-body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 24px;
}
.wyn-modal-cta {
  display: block;
  width: 100%;
  background: #c41230;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 20px;
  text-align: center;
  margin-bottom: 14px;
}
.wyn-modal-cta:hover { background: #a30f27; }
.wyn-modal-secondary {
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  color: #888;
  text-align: center;
  margin: 0;
}
.wyn-modal-secondary a { color: #c41230; }
.wyn-modal-secondary a:hover { text-decoration: underline; }
.wyn-modal-form { margin: 0 0 14px; }
.wyn-modal-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-family: 'PT Sans', sans-serif;
  font-size: 15px;
  border: 1px solid #ccc;
  background: #fff;
  color: #1a1a1a;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.wyn-modal-input:focus {
  outline: none;
  border-color: #c41230;
  box-shadow: 0 0 0 2px rgba(196, 18, 48, 0.15);
}
.wyn-modal-error {
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  color: #c41230;
  margin-bottom: 10px;
}
.wyn-modal-success {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #1a1a1a;
  text-align: center;
  padding: 16px 0 20px;
}
