/* ---------------------------------------------------------------
 * Launch button (embedded in the article via [jsllc_pickem_form])
 * ------------------------------------------------------------- */
.jsllc-pickem-launch { text-align: center; margin: 24px 0; }
.jsllc-pickem-launch-note { font-size: 13px; color: #777; margin-top: 8px; }

/* ---------------------------------------------------------------
 * Standalone full-page entry form (opened in its own tab)
 * ------------------------------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.jsllc-pickem-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 48px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Dark overlay tint over the photo, matching the JotForm reference look —
   readable white text with the stadium photo still clearly visible. */
.jsllc-pickem-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.62);
  z-index: 0;
}

.jsllc-pickem-page > * {
  position: relative;
  z-index: 1;
}

.jsllc-pickem-form {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  background: rgba(18, 22, 28, 0.88);
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  color: #f2f2f2;
  box-sizing: border-box;
}

.jsllc-pickem-form h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 26px;
}
.jsllc-pickem-form h3 {
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  margin-top: 28px;
}
.jsllc-form-deadline { color: #ffd479; font-weight: 700; margin-top: 0; }

.jsllc-form-row { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.jsllc-form-row label { flex: 1; min-width: 200px; display: flex; flex-direction: column; font-weight: 600; color: #e8e8e8; }
.jsllc-form-row input {
  margin-top: 4px; padding: 10px 12px; border: 1px solid #ccc; border-radius: 6px;
  font-weight: 400; background: #f7f7f7; color: #111;
}

.jsllc-game-pick {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 10px;
}
.jsllc-game-pick legend { font-weight: 700; padding: 0 6px; color: #ffffff; }
.jsllc-game-pick label { display: block; margin-bottom: 8px; font-weight: 500; color: #e8e8e8; }
.jsllc-game-pick label:last-child { margin-bottom: 0; }

.jsllc-game-locked {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.12);
  opacity: 0.75;
}
.jsllc-game-locked-label {
  margin: 4px 0 2px; font-weight: 700; color: #ffb4b4; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.jsllc-game-locked-matchup { margin: 0; color: #cfcfcf; }

.jsllc-form-notice { padding: 12px 16px; border-radius: 6px; margin: 0 auto 18px; font-weight: 600; max-width: 640px; }
.jsllc-form-success { background: #eafaf0; color: #1a7a3d; border: 1px solid #b7ecc9; }
.jsllc-form-error   { background: #fdecec; color: #a3222c; border: 1px solid #f6c1c6; }
.jsllc-form-closed  { background: #fff8e5; color: #8a6100; border: 1px solid #ffe6a3; }

.jsllc-pickem-form button.jsllc-btn,
.jsllc-btn.jsllc-btn-primary {
  margin-top: 10px; font-size: 16px; padding: 12px 28px;
  background: #7a1f2b; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 700;
}
.jsllc-btn.jsllc-btn-primary:hover { background: #92242f; }

.jsllc-pickem-confirm { text-align: center; }
.jsllc-pickem-confirm p { color: #e8e8e8; }

.jsllc-credit { margin-top: 8px; font-size: 11px; color: #999; text-align: center; }
