:root {
  --garnet: #73000a;
  --garnet-deep: #4a0009;
  --garnet-bright: #9b1220;
  --red: #c4122f;
  --black: #0b0b0b;
  --white: #ffffff;
  --cream: #f6f2ea;
  --muted: #6a6a6a;
  --line: rgba(255, 255, 255, 0.12);
  --card: #141014;
  --ok: #1f8f4e;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at top, rgba(115, 0, 10, 0.45), transparent 50%),
    linear-gradient(180deg, #12080a 0%, var(--black) 28%, #10090b 100%);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 11, 0.88);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-logo {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  font-weight: 400;
}
.brand em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: #d7b4ba;
  letter-spacing: 0.04em;
}
.topbar-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0d6da;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

main {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.1rem 3rem;
}

.hero {
  text-align: center;
  padding: 1.5rem 0 1.25rem;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0a8b1;
  margin-bottom: 0.65rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.subhead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f3e7e9;
  margin-bottom: 0.9rem;
}
.hero-lead {
  color: #d8d0d2;
  max-width: 38rem;
  margin: 0 auto;
  font-size: 0.98rem;
}
.hero-lead strong { color: #fff; }

.info-card,
.form-shell,
.calc-card,
.confirm-card {
  background: linear-gradient(180deg, rgba(28, 14, 16, 0.96), rgba(18, 10, 12, 0.98));
  border: 1px solid rgba(196, 18, 47, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.25rem 1.15rem;
  margin-bottom: 1.15rem;
}
.info-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.info-card p { color: #ddd3d5; margin-bottom: 0.85rem; }
.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pill-list li {
  background: rgba(115, 0, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.urgent-note {
  background: rgba(196, 18, 47, 0.16);
  border-left: 3px solid var(--red);
  padding: 0.85rem 0.95rem;
  border-radius: 0 10px 10px 0;
  color: #ffe8ec !important;
  font-size: 0.94rem;
  margin-bottom: 0 !important;
}

.form-shell { padding: 1.2rem 1.05rem 1.35rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #f4e9eb;
}
.req { color: #ff6b7f; }
.opt { color: #a89a9d; font-weight: 500; }

.field input,
.field select,
.field textarea,
.money-input input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.money-input input:focus {
  border-color: rgba(196, 18, 47, 0.8);
  box-shadow: 0 0 0 3px rgba(196, 18, 47, 0.2);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ccc 50%), linear-gradient(135deg, #ccc 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field textarea { resize: vertical; min-height: 96px; }
.hint {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #b7a8ab;
}

.calc-card {
  padding: 1rem 1rem 0.95rem;
  margin-bottom: 1.15rem;
  border-color: rgba(255, 255, 255, 0.12);
}
.calc-card h2,
.pay-block h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}
.calc-row:last-of-type { border-bottom: none; }
.calc-row.total {
  margin-top: 0.25rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(196, 18, 47, 0.45);
  border-bottom: none;
  font-size: 1.05rem;
}
.calc-row.total strong {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
}
.calc-extra {
  align-items: flex-end;
}
.calc-extra label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f0e4e6;
  padding-bottom: 0.7rem;
}
.money-input {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0 0.7rem;
  min-width: 120px;
}
.money-input span { color: #cfc0c3; font-weight: 700; }
.money-input input {
  border: none;
  background: transparent;
  text-align: right;
  padding: 0.75rem 0;
  box-shadow: none !important;
  width: 5.5rem;
}
.calc-note {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: #b7a8ab;
}

.pay-block { margin-bottom: 1.1rem; }
.pay-options {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 1rem;
}
.pay-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}
.pay-option:has(input:checked) {
  border-color: rgba(196, 18, 47, 0.85);
  background: rgba(115, 0, 10, 0.35);
  box-shadow: inset 0 0 0 1px rgba(196, 18, 47, 0.35);
}
.pay-option input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--red);
}
.pay-option strong {
  display: block;
  font-size: 0.98rem;
}
.pay-option em {
  display: block;
  font-style: normal;
  color: #d2c0c4;
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

.note-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.9rem;
  margin-bottom: 0.9rem;
}
.note-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e0a8b1;
  margin-bottom: 0.35rem;
}
.payment-note {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.check-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.35rem 0 1rem;
  font-size: 0.92rem;
  color: #e8dfe1;
  line-height: 1.45;
}
.check-row input {
  margin-top: 0.2rem;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  accent-color: var(--red);
}

.form-error {
  background: rgba(196, 18, 47, 0.18);
  border: 1px solid rgba(255, 107, 127, 0.45);
  color: #ffd6dc;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  padding: 0.9rem 1rem;
}
.btn-primary {
  background: linear-gradient(180deg, var(--red) 0%, var(--garnet) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 18, 47, 0.28);
}
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost {
  background: transparent;
  color: #d7c4c8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}
.legal-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #a8989c;
  text-align: center;
}

.confirmation { padding-top: 0.25rem; }
.confirm-lead {
  color: #ddd3d5;
  margin: 0.5rem 0 1rem;
}
.confirm-card {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.status-pending {
  color: #ffb347 !important;
  font-weight: 800 !important;
}
.confirm-actions {
  display: grid;
  gap: 0.65rem;
}
.copy-feedback {
  margin-top: 0.75rem;
  text-align: center;
  color: #8dffb3;
  font-weight: 700;
  font-size: 0.9rem;
}

.closing {
  text-align: center;
  padding: 2.25rem 0.5rem 1rem;
}
.closing-line {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f4e9eb;
  margin-bottom: 0.65rem;
}
.signature {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.45rem;
}
.mission {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a2ab;
}

.site-footer {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 0 1.1rem 2.5rem;
  text-align: center;
  color: #9b8e91;
  font-size: 0.82rem;
}
.site-footer a { color: #d7c4c8; }
.site-footer p + p { margin-top: 0.35rem; }

.field.invalid input,
.field.invalid select,
.field.invalid textarea,
.pay-options.invalid,
.check-row.invalid {
  outline: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #ff6b7f;
}
.pay-options.invalid .pay-option {
  border-color: rgba(255, 107, 127, 0.55);
}
.check-row.invalid {
  color: #ffd0d7;
}

@media (min-width: 640px) {
  main { padding-top: 1.75rem; }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field-full { grid-column: 1 / -1; }
  .pay-options {
    grid-template-columns: 1fr 1fr;
  }
  .confirm-actions {
    grid-template-columns: 1fr 1fr;
  }
  .confirm-actions .btn-ghost {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* Matchup + countdown */
.matchup-card {
  margin: 0.35rem 0 1.35rem;
  padding: 1.15rem 1rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(115, 0, 10, 0.42) 0%, rgba(20, 10, 12, 0.92) 55%, rgba(11, 11, 11, 0.96) 100%);
  box-shadow: var(--shadow);
  text-align: center;
}
.matchup-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.matchup-top .eyebrow { margin-bottom: 0; }
.matchup-live {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  background: #8dffb3;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}
.matchup-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.85rem;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.team img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.team strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.team span {
  font-size: 0.78rem;
  color: #d2c0c4;
}
.vs-col { padding: 0 0.15rem; }
.vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.kickoff-meta {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.venue-meta {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  color: #d2c0c4;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.95rem 0 0.55rem;
}
.cd-unit {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.55rem 0.25rem;
}
.cd-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
}
.cd-unit span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a2ab;
}
.matchup-note {
  font-size: 0.84rem;
  color: #e0a8b1;
}

.pay-option .pay-open {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffd0d7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pay-links-hint { margin-top: 0.15rem; }

.all-pay-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}
.all-pay-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  color: #f4e9eb;
  text-decoration: none;
}
.all-pay-links a:hover {
  border-color: rgba(196, 18, 47, 0.7);
  background: rgba(115, 0, 10, 0.35);
}

@media (max-width: 420px) {
  .team img { width: 58px; height: 58px; }
  .team strong { font-size: 1rem; }
  .all-pay-links { grid-template-columns: 1fr 1fr; }
}
