/* ===== Sponsored giveaway entry form — neon-noir =====
   Companion to ../../giveaways/giveaways.css (shares its CSS variables).
   Only load on pages that embed the giveaway entry snippet.
*/
.gw-entry-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.gw-entry-wrap::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--coral), var(--cyan));
}
.gw-entry-title {
  font-family: 'Pricedown', 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
  font-size: clamp(24px, 4vw, 34px);
  margin: 0 0 6px;
  color: var(--ink);
}
.gw-entry-sub { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; max-width: 560px; }
.gw-entry-sub a { color: var(--cyan); }
.gw-entry-form { display: grid; gap: 14px; }
.gw-entry-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .gw-entry-row { grid-template-columns: 1fr; } }
.gw-field { display: grid; gap: 6px; }
.gw-field > span { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.gw-field input[type="text"],
.gw-field input[type="email"] {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 16px;
  padding: 13px 14px;
  font-family: inherit;
}
.gw-field input:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: var(--cyan);
}
.gw-field input[aria-invalid="true"] { border-color: var(--coral); }
.gw-entry-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.gw-entry-consent input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--acid); }
.gw-entry-consent a { color: var(--cyan); }
.gw-entry-error {
  display: none;
  font-size: 14px; color: #ffd2a8;
  background: rgba(255, 159, 67, .1);
  border: 1px solid rgba(255, 159, 67, .5);
  border-radius: 10px;
  padding: 10px 14px;
}
.gw-entry-error.show { display: block; }
.gw-entry-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--acid); color: var(--acid-ink);
  font-weight: 800; font-size: 16px;
  border: 0; border-radius: 12px; padding: 14px 22px; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 46, 136, .35), 0 6px 24px rgba(255, 46, 136, .28);
  transition: transform .12s ease, box-shadow .12s ease;
}
.gw-entry-submit:hover:not(:disabled) { transform: translateY(-2px); }
.gw-entry-submit:disabled { opacity: .6; cursor: wait; }
.gw-entry-submit:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.gw-entry-nojs { font-size: 14px; color: var(--muted); }
/* success / already-entered panels */
.gw-entry-done {
  display: none;
  border: 1px solid rgba(55, 224, 139, .45);
  border-radius: 14px;
  background: rgba(55, 224, 139, .06);
  padding: 20px;
}
.gw-entry-done.show { display: block; }
.gw-entry-done h3 { margin: 0 0 8px; color: var(--ink); font-size: 19px; }
.gw-entry-done p { margin: 0 0 12px; color: var(--muted); font-size: 14.5px; }
.gw-entry-done p:last-child { margin-bottom: 0; }
.gw-newsletter-step { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 18px; }
.gw-newsletter-step h4 { margin: 0 0 6px; color: var(--ink); font-size: 16px; }
.gw-newsletter-step > p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
/* "coming soon" badge */
.gw-coming-soon {
  display: inline-block;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  color: var(--coral); border: 1px solid rgba(255, 159, 67, .55);
  background: rgba(255, 159, 67, .08);
  border-radius: 999px; padding: 5px 14px; margin-bottom: 10px;
}
/* honeypot — visually hidden from humans, visible to bots */
.gw-hp { position: absolute !important; left: -9999px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
