/* ═══════════════════════════════════════════════
   GZ REGISTER v2 — Team-Driven Registration Page
   ═══════════════════════════════════════════════ */

/* ── Custom cursor: never show OS cursor ── */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

/* ── Team Theme Variables ── */
:root {
  --t-primary:    #8B1A1A;
  --t-secondary:  #5C0F0F;
  --t-dark:       #0D0505;
  --t-glow:       rgba(139,26,26,0.35);
  --t-gradient:   linear-gradient(135deg, #0D0505 0%, #1A0A0A 50%, #0D0505 100%);
  --t-transition: all 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

body[data-team="blue-blitz"]        { --t-primary:#00D4FF; --t-secondary:#0099CC; --t-dark:#001A26; --t-glow:rgba(0,212,255,0.35); --t-gradient:linear-gradient(135deg,#001828 0%,#002D40 60%,#001828 100%); }
body[data-team="lime-lightning"]    { --t-primary:#39FF14; --t-secondary:#20C900; --t-dark:#061405; --t-glow:rgba(57,255,20,0.35);  --t-gradient:linear-gradient(135deg,#061405 0%,#0E2808 60%,#061405 100%); }
body[data-team="navy-nemesis"]      { --t-primary:#4F8EF7; --t-secondary:#1E3A8A; --t-dark:#06101F; --t-glow:rgba(79,142,247,0.35); --t-gradient:linear-gradient(135deg,#06101F 0%,#0D1E3D 60%,#06101F 100%); }
body[data-team="orange-apocalypse"] { --t-primary:#FF6B00; --t-secondary:#CC4400; --t-dark:#1A0800; --t-glow:rgba(255,107,0,0.35);  --t-gradient:linear-gradient(135deg,#1A0800 0%,#2D1200 60%,#1A0800 100%); }
body[data-team="purple-punishers"]  { --t-primary:#9333EA; --t-secondary:#6B21A8; --t-dark:#0F0517; --t-glow:rgba(147,51,234,0.35); --t-gradient:linear-gradient(135deg,#0F0517 0%,#1A0B2E 60%,#0F0517 100%); }
body[data-team="red-rampage"]       { --t-primary:#DC2626; --t-secondary:#991B1B; --t-dark:#1A0404; --t-glow:rgba(220,38,38,0.35);  --t-gradient:linear-gradient(135deg,#1A0404 0%,#2D0808 60%,#1A0404 100%); }
body[data-team="steel-spartans"]    { --t-primary:#94A3B8; --t-secondary:#64748B; --t-dark:#0D1117; --t-glow:rgba(148,163,184,0.35);--t-gradient:linear-gradient(135deg,#0D1117 0%,#1A2030 60%,#0D1117 100%); }
body[data-team="yellow-inferno"]    { --t-primary:#F59E0B; --t-secondary:#D97706; --t-dark:#1A1200; --t-glow:rgba(245,158,11,0.35); --t-gradient:linear-gradient(135deg,#1A1200 0%,#2D2000 60%,#1A1200 100%); }

/* ── Base ── */
.gz2-body {
  background: #080808;
  color: #fff;
  overflow-x: hidden;
}
.gz2-body #navbar:not(.scrolled):not(.menu-open) {
  background: transparent;
}
/* Keep navbar transparent (frosted) even when scrolled */
.gz2-body #navbar.scrolled {
  background: rgba(5,3,3,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255,255,255,0.05);
}
.gz2-body #navbar:not(.scrolled):not(.menu-open) .nav-links a { color: #fff; }

/* Nav CTA — outlined, team-colour driven */
.gz2-body #navbar .nav-cta {
  background: transparent;
  color: var(--t-primary);
  border-color: var(--t-primary);
  opacity: 1;
  transition: background 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease;
}
.gz2-body #navbar .nav-cta:hover {
  background: var(--t-primary);
  color: #000;
  opacity: 1;
  box-shadow: 0 0 18px var(--t-glow);
}

/* ── Screen Transitions ── */
.gz2-screen {
  min-height: 100dvh;
  position: relative;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.gz2-screen[hidden] { display: none !important; }
.gz2-screen.gz2-fade-in { animation: gz2FadeIn 0.55s ease forwards; }

@keyframes gz2FadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════
   SCREEN 1: ENTRY
   ══════════════════════════ */
.gz2-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #080808;
}

.gz2-entry-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: 0;
}

.gz2-entry-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.95) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%,   rgba(0,0,0,0.7)  0%, transparent 50%);
  z-index: 1;
}

.gz2-entry-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.gz2-entry-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.gz2-entry-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.gz2-entry-kicker::before,
.gz2-entry-kicker::after {
  content: '';
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.25);
}

.gz2-entry-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
}
.gz2-entry-title em {
  font-style: normal;
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
}

.gz2-entry-sub {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 44px;
}

.gz2-entry-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* HUD stats bar */
.gz2-entry-hud {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.4);
}
.gz2-entry-hud-item {
  padding: 12px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.gz2-entry-hud-item:last-child { border-right: none; }
.gz2-entry-hud-item span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.gz2-entry-hud-item strong {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ══════════════════════════
   SCREEN 0: STATUS CHECK
   ══════════════════════════ */
.gz2-sc-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  overflow: hidden;
  padding: clamp(100px,14vw,130px) 24px 60px;
}

.gz2-sc-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.gz2-sc-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

/* Panels */
.gz2-sc-panel {
  padding: 0 40px;
}
.gz2-sc-panel--check { padding-left: 0; }
.gz2-sc-panel--new   { padding-right: 0; }

.gz2-sc-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 10px 0 10px;
  line-height: 1.05;
}

.gz2-sc-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Input row */
.gz2-sc-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.gz2-sc-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.gz2-sc-input:focus { border-color: rgba(255,255,255,0.28); }
.gz2-sc-input::placeholder { color: rgba(255,255,255,0.2); }

.gz2-sc-lookup-btn {
  padding: 13px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.gz2-sc-lookup-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.gz2-sc-lookup-btn:disabled { opacity: 0.4; pointer-events: none; }

.gz2-sc-err {
  font-size: 12.5px;
  color: rgba(255,80,80,0.75);
  min-height: 18px;
  margin: 0 0 4px;
}

/* Result card */
.gz2-sc-result { margin-top: 16px; }

.gz2-sc-status {
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gz2-sc-status--confirmed {
  background: rgba(110,219,138,0.07);
  border: 1px solid rgba(110,219,138,0.2);
}
.gz2-sc-status--receipt {
  background: rgba(255,200,70,0.06);
  border: 1px solid rgba(255,200,70,0.15);
}
.gz2-sc-status--payment {
  background: rgba(255,160,40,0.07);
  border: 1px solid rgba(255,160,40,0.2);
}
.gz2-sc-status--waitlist {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.gz2-sc-status--expired {
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.15);
}

.gz2-sc-status-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.gz2-sc-status-body { flex: 1; min-width: 0; }
.gz2-sc-status-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}
.gz2-sc-status-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.gz2-sc-status--confirmed  .gz2-sc-status-label { color: rgba(110,219,138,0.85); }
.gz2-sc-status--receipt    .gz2-sc-status-label { color: rgba(255,200,70,0.8); }
.gz2-sc-status--payment    .gz2-sc-status-label { color: rgba(255,160,40,0.85); }
.gz2-sc-status--waitlist   .gz2-sc-status-label { color: rgba(255,255,255,0.5); }
.gz2-sc-status--expired    .gz2-sc-status-label { color: rgba(255,80,80,0.75); }

.gz2-sc-status-msg {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  margin: 0 0 10px;
}
.gz2-sc-status-msg:last-child { margin-bottom: 0; }

.gz2-sc-upload-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.gz2-sc-upload-link:hover { background: rgba(255,255,255,0.14); }

/* Divider */
.gz2-sc-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  user-select: none;
}
.gz2-sc-divider::before,
.gz2-sc-divider::after {
  content: '';
  flex: 1;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.gz2-sc-divider span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 10px 0;
}

/* New registration button */
.gz2-sc-new-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
}
.gz2-sc-new-btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.gz2-sc-new-btn:active { transform: translateY(0); }

/* ── Mobile: stack vertically ── */
@media (max-width: 680px) {
  .gz2-sc-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .gz2-sc-panel { padding: 0; }
  .gz2-sc-divider {
    flex-direction: row;
    padding-top: 0;
    margin: 28px 0;
  }
  .gz2-sc-divider::before,
  .gz2-sc-divider::after {
    flex: 1; height: 1px; width: auto;
  }
  .gz2-sc-divider span { padding: 0 14px; }
}

/* ══════════════════════════
   SCREEN 2: TEAM SELECT
   ══════════════════════════ */
.gz2-team-screen {
  background: var(--t-gradient);
  transition: background 0.6s ease;
  padding: var(--nav-height) 0 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Watermark logo */
.gz2-team-watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gz2-team-watermark img {
  width: min(700px, 90vw);
  height: min(700px, 90vh);
  object-fit: contain;
  opacity: 0;
  filter: blur(0px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.9);
}
.gz2-team-watermark.is-active img {
  opacity: 0.06;
  transform: scale(1);
}

/* Ambient glow pulse — team select screen only */
.gz2-team-glow {
  position: fixed;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--t-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.6s ease;
  animation: gz2Pulse 3s ease-in-out infinite;
}
/* Hide the center glow on form + success screens */
.gz2-form-screen .gz2-team-glow,
.gz2-success-screen .gz2-team-glow { display: none; }
@keyframes gz2Pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

.gz2-team-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 40px 32px;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.gz2-team-header {
  text-align: center;
  margin-bottom: 40px;
}
.gz2-team-header .gz2-step-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-primary);
  display: block;
  margin-bottom: 12px;
  transition: color 0.5s;
}
.gz2-team-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 10px;
}
.gz2-team-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto;
}

/* Team grid */
.gz2-team-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  flex: 1;
}

.gz2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gz2-team-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 14px 18px;
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.35s ease,
    background   0.35s ease,
    transform    0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow   0.35s ease;
  user-select: none;
  overflow: hidden;
}

.gz2-team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--t-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}

.gz2-team-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}

/* Pick states — data-pick-num="1|2|3" */
.gz2-team-card[data-pick-num] { transform: translateY(-4px) scale(1.02); }

.gz2-team-card[data-pick-num="1"] {
  border-color: var(--t-primary);
  background: rgba(0,0,0,0.3);
  box-shadow: 0 0 0 1px var(--t-primary), 0 0 32px var(--t-glow), inset 0 0 24px rgba(0,0,0,0.4);
  transform: translateY(-6px) scale(1.04);
}
.gz2-team-card[data-pick-num="1"]::before { opacity: 0.18; }
.gz2-team-card[data-pick-num="2"] { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
.gz2-team-card[data-pick-num="3"] { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }

/* Pick badge */
.gz2-pick-badge {
  position: absolute;
  top: 7px; left: 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 3px;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease, background 0.4s ease;
  opacity: 0;
}
.gz2-team-card[data-pick-num] .gz2-pick-badge { opacity: 1; }
.gz2-team-card[data-pick-num="1"] .gz2-pick-badge { background: var(--t-primary); color: #000; transition: background 0.5s ease; }
.gz2-team-card[data-pick-num="2"] .gz2-pick-badge { background: rgba(255,255,255,0.20); color: rgba(255,255,255,0.95); }
.gz2-team-card[data-pick-num="3"] .gz2-pick-badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.80); }

/* Click-to-remove hint */
.gz2-team-card[data-pick-num] .gz2-pick-remove {
  position: absolute;
  top: 7px; right: 7px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.gz2-team-card[data-pick-num]:hover .gz2-pick-remove { opacity: 1; }

.gz2-team-logo-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.gz2-team-logo-wrap img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.gz2-team-card:hover .gz2-team-logo-wrap img {
  transform: scale(1.08);
}
.gz2-team-card[data-pick-num="1"] .gz2-team-logo-wrap img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 20px var(--t-glow));
}
.gz2-team-card[data-pick-num="2"] .gz2-team-logo-wrap img,
.gz2-team-card[data-pick-num="3"] .gz2-team-logo-wrap img {
  transform: scale(1.06);
}

.gz2-team-name {
  position: relative;
  z-index: 1;
  font-family: 'Anton', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}
.gz2-team-trait {
  position: relative;
  z-index: 1;
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Team preview panel */
/* ══════════════════════════════════════
   SQUAD LOADOUT PANEL — Premium redesign
   ══════════════════════════════════════ */
.gz2-team-preview {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--t-primary);
  border-radius: 2px;
  overflow: hidden;
  transition: border-top-color 0.35s ease;
}

/* Panel header */
.gz2-panel-header {
  padding: 12px 18px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}
.gz2-panel-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.24);
}
.gz2-panel-label::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--t-primary);
  margin-right: 9px;
  vertical-align: middle;
  transition: background 0.35s;
}

/* Empty state */
.gz2-preview-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 24px;
}
.gz2-empty-icon { display: none; }
.gz2-preview-empty p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0;
}

/* Hero: logo + name + first preference label */
.gz2-preview-hero {
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(139,26,26,0.25);
}
.gz2-preview-hero::before { display: none; }

.gz2-preview-logo-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.gz2-preview-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  filter: none;
}

.gz2-preview-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
}

.gz2-preview-first-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Kept for JS compat, not displayed */
.gz2-preview-motto { display: none; }
.gz2-preview-trait { display: none; }
.gz2-trait-pill    { display: none; }

/* Picks */
.gz2-preview-picks {
  display: flex;
  flex-direction: column;
}

.gz2-picks-header {
  padding: 10px 18px 9px;
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gz2-picks-divider { display: none; }
.gz2-picks-label   { display: none; }

/* Pick row */
.gz2-preview-pick-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-left: 2px solid transparent;
  opacity: 0.22;
  transition: opacity 0.3s, border-left-color 0.35s;
}
.gz2-preview-pick-row:last-child { border-bottom: none; }
.gz2-preview-pick-row.is-filled  { opacity: 1; }

.gz2-preview-pick-row[data-pick-row="1"].is-filled {
  border-left-color: var(--t-primary);
}

/* Row number — display font, large, muted */
.gz2-preview-pick-num {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.12);
  min-width: 30px;
  flex-shrink: 0;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  transition: color 0.35s;
}
.gz2-preview-pick-row[data-pick-row="1"].is-filled .gz2-preview-pick-num {
  color: var(--t-primary);
}
.gz2-preview-pick-row[data-pick-row="2"].is-filled .gz2-preview-pick-num,
.gz2-preview-pick-row[data-pick-row="3"].is-filled .gz2-preview-pick-num {
  color: rgba(255,255,255,0.18);
}

/* Logo */
.gz2-preview-pick-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: none;
  flex-shrink: 0;
}
.gz2-preview-pick-row.is-filled .gz2-preview-pick-logo { display: block; }

/* Text */
.gz2-pick-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gz2-preview-pick-name {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  display: block;
  transition: color 0.3s;
}
.gz2-preview-pick-row.is-filled .gz2-preview-pick-name { color: #fff; }

.gz2-pick-sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  line-height: 1.1;
  display: block;
  letter-spacing: 0;
  transition: color 0.3s;
}
.gz2-preview-pick-row[data-pick-row="1"].is-filled .gz2-pick-sublabel {
  color: rgba(255,255,255,0.44);
}

.gz2-preview-pick-empty-label { display: none !important; }

/* Disclaimer */
.gz2-team-disclaimer {
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
  background: none;
  border-left: none;
  border-radius: 0;
  display: flex;
  gap: 0;
}
.gz2-team-disclaimer p {
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,0.22);
  margin: 0;
  font-weight: 400;
}
.gz2-team-disclaimer p em {
  font-style: normal;
  color: rgba(255,255,255,0.38);
}


/* Optional form fields */
.gz2-optional-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-left: 8px;
}
.gz2-radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gz2-radio-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.gz2-radio-inline input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  flex-shrink: 0;
}
.gz2-radio-inline input[type="radio"]:checked {
  border-color: var(--t-primary);
  background: var(--t-primary);
}
.gz2-radio-inline input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #000;
}
.gz2-radio-inline:has(input:checked) { color: #fff; }
.gz2-label textarea {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  min-height: 80px;
  resize: vertical;
}
.gz2-label textarea::placeholder { color: rgba(255,255,255,0.2); }
.gz2-label textarea:focus {
  border-color: var(--t-primary);
  box-shadow: 0 0 0 3px var(--t-glow);
}

/* Lock button area */
.gz2-team-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 48px;
}

/* ══════════════════════════
   SCREEN 3–5: FORM STEPS
   ══════════════════════════ */
.gz2-form-screen {
  background: #080810;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

/* Step bar */
.gz2-step-bar {
  position: relative;
  z-index: 2;
  padding: 28px 40px 0;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.gz2-step-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.gz2-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}
.gz2-step-node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 1px;
  background: rgba(255,255,255,0.12);
  transition: background 0.5s ease;
}
.gz2-step-node.is-done:not(:last-child)::after {
  background: var(--t-primary);
}
.gz2-step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.gz2-step-node.is-active .gz2-step-dot {
  border-color: var(--t-primary);
  color: var(--t-primary);
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 12px var(--t-glow);
}
.gz2-step-node.is-done .gz2-step-dot {
  border-color: var(--t-primary);
  background: var(--t-primary);
  color: #000;
}
.gz2-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.4s;
  white-space: nowrap;
}
.gz2-step-node.is-active .gz2-step-label,
.gz2-step-node.is-done .gz2-step-label {
  color: rgba(255,255,255,0.7);
}

/* Form shell */
.gz2-form-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px 60px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.gz2-form-heading {
  margin-bottom: 36px;
}
.gz2-form-heading .gz2-step-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-primary);
  display: block;
  margin-bottom: 10px;
  transition: color 0.5s;
}
.gz2-form-heading h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Form fieldsets */
.gz2-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.gz2-fieldset[hidden] { display: none; }

.gz2-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.gz2-field-grid .wide { grid-column: 1 / -1; }

.gz2-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.gz2-label input,
.gz2-label select {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  -webkit-appearance: none;
}
.gz2-label input::placeholder { color: rgba(255,255,255,0.2); }
.gz2-label input:focus,
.gz2-label select:focus {
  border-color: var(--t-primary);
  box-shadow: 0 0 0 3px var(--t-glow);
}
.gz2-label select option { background: #1a1a1a; color: #fff; }

/* Choice blocks (step 3) */
.gz2-choice-section {
  margin-bottom: 28px;
}
.gz2-choice-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  display: block;
}

.gz2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gz2-chip {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.25s ease;
}
.gz2-chip:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.gz2-chip.is-selected {
  background: var(--t-primary);
  border-color: var(--t-primary);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 16px var(--t-glow);
}

.gz2-radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gz2-radio-card {
  position: relative;
}
.gz2-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.gz2-radio-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 90px;
}
.gz2-radio-card label .rc-icon {
  font-size: 24px;
}
.gz2-radio-card label .rc-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.gz2-radio-card input:checked + label {
  border-color: var(--t-primary);
  background: rgba(0,0,0,0.3);
  box-shadow: 0 0 20px var(--t-glow);
}
.gz2-radio-card input:checked + label .rc-name {
  color: var(--t-primary);
}

/* ── Confirmation summary ── */
.gz2-summary {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.gz2-summary-team {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gz2-summary-team-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--t-glow));
}
.gz2-summary-team-info strong {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t-primary);
  display: block;
  transition: color 0.5s;
}
.gz2-summary-team-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.gz2-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gz2-summary-item {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.gz2-summary-item:nth-child(even) { border-right: none; }
.gz2-summary-item dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.gz2-summary-item dd {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.gz2-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px 0;
}
.gz2-confirm-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  margin-top: 2px;
}
.gz2-confirm-check input[type="checkbox"]:checked {
  background: var(--t-primary);
  border-color: var(--t-primary);
}
.gz2-confirm-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid #000;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.gz2-confirm-check span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Participation Agreement */
.gz2-participation-agreement {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px 28px 20px;
  margin-bottom: 32px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.gz2-participation-agreement::-webkit-scrollbar { width: 3px; }
.gz2-participation-agreement::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }
.gz2-pa-intro {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gz2-pa-intro p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.gz2-pa-intro p:last-child { margin-bottom: 0; }
.gz2-pa-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gz2-pa-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.gz2-pa-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.gz2-pa-section p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.gz2-pa-section p:last-child { margin-bottom: 0; }
.gz2-pa-list {
  margin: 8px 0 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gz2-pa-list li {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.gz2-pa-list li strong { color: rgba(255,255,255,0.75); }
.gz2-pa-release { background: rgba(255,255,255,0.03); border-radius: 4px; padding: 16px; margin-top: 4px; }
.gz2-pa-release .gz2-pa-section-title { color: rgba(255,100,100,0.7); }
.gz2-form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  line-height: 1.6;
}

/* Form nav */
.gz2-form-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.gz2-form-error {
  font-size: 13px;
  color: #FF4444;
  font-weight: 600;
  margin-top: 12px;
  min-height: 20px;
  display: none;
}
.gz2-form-error.is-visible { display: block; }

/* ── Buttons ── */
.gz2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.gz2-btn-primary {
  background: var(--t-primary);
  color: #000;
  box-shadow: 0 4px 24px var(--t-glow);
}
.gz2-btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--t-glow);
}
.gz2-btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.gz2-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.gz2-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.gz2-btn-ghost:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.gz2-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.gz2-btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
}
.gz2-btn-lg { padding: 16px 36px; font-size: 14px; }
.gz2-btn svg, .gz2-btn-arrow::after {
  content: '→';
  font-size: 16px;
}
.gz2-btn-arrow { gap: 12px; }
.gz2-btn-arrow::after { content: '→'; }

/* ══════════════════════════
   SCREEN 5: SUCCESS
   ══════════════════════════ */
.gz2-success-screen {
  background: #080810;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-height) 24px 60px;
}

.gz2-success-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--t-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: gz2Pulse 2.5s ease-in-out infinite;
  transition: background 0.6s ease;
}

.gz2-success-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.gz2-success-logo {
  width: 180px; height: 180px;
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px var(--t-glow));
  transition: filter 0.6s ease;
  animation: gz2LogoBounce 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes gz2LogoBounce {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.gz2-success-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-primary);
  display: block;
  margin-bottom: 16px;
  transition: color 0.5s;
}
.gz2-success-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(60px, 10vw, 100px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.gz2-success-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}
.gz2-success-name {
  color: var(--t-primary);
  font-weight: 700;
  transition: color 0.5s;
}
.gz2-success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.gz2-success-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.gz2-success-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* ── Corner glow orbs (form + success screens) ── */
.gz2-corner-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.gz2-cg {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0;
  transition: opacity 1.2s ease, background-color 0.8s ease;
}
.gz2-cg.is-active { opacity: 1; }
/* 1st pick — top-left, most prominent */
.gz2-cg-1 {
  top: -160px; left: -120px;
  width: 480px; height: 480px;
}
.gz2-cg-1.is-active { opacity: 0.13; }
/* 2nd pick — top-right, secondary */
.gz2-cg-2 {
  top: -120px; right: -120px;
  width: 360px; height: 360px;
}
.gz2-cg-2.is-active { opacity: 0.08; }
/* 3rd pick — bottom-center, most subtle */
.gz2-cg-3 {
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 320px;
}
.gz2-cg-3.is-active { opacity: 0.055; }

/* ── Preferences strip ── */
.gz2-pref-strip {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.gz2-pref-strip-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.gz2-pref-strip-items {
  display: flex;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}
.gz2-pref-strip-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
}
.gz2-pref-strip-item[data-strip-pick="1"] {
  border-color: rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.3);
}
.gz2-pref-strip-rank {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  min-width: 22px;
}
.gz2-pref-strip-item[data-strip-pick="1"] .gz2-pref-strip-rank { color: var(--t-primary); transition: color 0.5s; }
.gz2-pref-strip-logo {
  width: 22px; height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.gz2-pref-strip-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.gz2-pref-strip-item[data-strip-pick="1"] .gz2-pref-strip-name { color: rgba(255,255,255,0.85); }
.gz2-pref-strip-note {
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  flex-shrink: 0;
  font-style: italic;
}
@media (max-width: 640px) {
  .gz2-pref-strip { padding: 8px 16px; }
  .gz2-pref-strip-note { display: none; }
}

/* ── Lock button progress ── */
.gz2-lock-count {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-top: 2px;
}

/* ── Confirmation 3-picks display ── */
.gz2-confirm-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  padding: 24px 20px 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
}
.gz2-confirm-pick {
  text-align: center;
  padding: 0 8px;
}
.gz2-confirm-pick + .gz2-confirm-pick {
  border-left: 1px solid rgba(255,255,255,0.06);
}
.gz2-confirm-pick-rank {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 10px;
}
.gz2-confirm-pick:first-child .gz2-confirm-pick-rank {
  color: var(--t-primary);
  transition: color 0.5s;
}
.gz2-confirm-pick-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  opacity: 0.6;
}
.gz2-confirm-pick:first-child .gz2-confirm-pick-logo {
  width: 80px; height: 80px;
  opacity: 1;
  filter: drop-shadow(0 0 14px var(--t-glow));
  transition: filter 0.5s;
}
.gz2-confirm-pick-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.gz2-confirm-pick:first-child .gz2-confirm-pick-name { color: rgba(255,255,255,0.85); }
.gz2-confirm-picks-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  padding: 10px 20px 14px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 4px 4px;
  margin-bottom: 14px;
  font-style: italic;
}
/* Summary card connects flush to 3-picks section */
.gz2-summary { border-radius: 0 0 10px 10px; }
.gz2-summary-team { display: none; }

/* ── Success 3-logos row ── */
.gz2-success-logos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
}
.gz2-success-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.gz2-success-logo-item img {
  object-fit: contain;
  transition: filter 0.5s;
}
.gz2-success-logo-item:nth-child(1) img { width: 80px; height: 80px; opacity: 0.55; }
.gz2-success-logo-item:nth-child(2) img {
  width: 140px; height: 140px;
  filter: drop-shadow(0 0 32px var(--t-glow));
  animation: gz2LogoBounce 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.gz2-success-logo-item:nth-child(3) img { width: 80px; height: 80px; opacity: 0.55; }
.gz2-success-logo-rank {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.gz2-success-logo-item:nth-child(2) .gz2-success-logo-rank {
  color: var(--t-primary);
  transition: color 0.5s;
}
.gz2-success-picks-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
  font-style: italic;
}

/* Sticky mobile CTA — hidden on desktop, activated via responsive block */
.gz2-mobile-sticky { display: none; }

/* Scan lines decorative */
.gz2-scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  opacity: 0.6;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST REBUILD
   ══════════════════════════════════════════════════ */

/* ── Global safety ── */
html { overflow-x: hidden; }
.gz2-body { overflow-x: hidden; }

/* ── Desktop/mobile copy toggling ── */
.gz2-m-only { display: none; }
.gz2-d-only { display: inline; }

/* ── Pref strip chip consistency ── */
.gz2-pref-strip-items { align-items: stretch; }
.gz2-pref-strip-item  { align-items: center; min-height: 32px; box-sizing: border-box; }

/* ── Sticky mobile CTA — hidden by default, JS adds .gz2-sticky-visible ── */
.gz2-mobile-sticky { display: none; }

/* ════════════════════════════════
   ≤ 1100px  small desktop / tablet landscape
   ════════════════════════════════ */
@media (max-width: 1100px) {
  .gz2-team-layout { grid-template-columns: 1fr; }
  .gz2-team-grid   { grid-template-columns: repeat(4, 1fr); }
  .gz2-team-preview {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    border-top-width: 1px;
    border-left: 3px solid var(--t-primary);
    border-radius: 0;
    transition: border-left-color 0.35s;
  }
  .gz2-panel-header { width: 100%; }
  .gz2-preview-empty { padding: 20px; width: 100%; justify-content: flex-start; }
  .gz2-preview-hero {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 14px 18px;
    gap: 14px;
    flex: 1;
    min-width: 200px;
    border-bottom: none;
    border-right: 1px solid rgba(139,26,26,0.2);
  }
  .gz2-preview-logo-wrap { width: 52px; height: 52px; margin-bottom: 0; flex-shrink: 0; }
  .gz2-preview-logo-img { width: 52px; height: 52px; }
  .gz2-preview-name { font-size: 17px; margin-bottom: 4px; }
  .gz2-preview-first-label { font-size: 10px; }
  .gz2-picks-header { display: none; }
  .gz2-preview-picks { flex-direction: row; flex: 1; min-width: 220px; }
  .gz2-preview-pick-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 6px;
    flex: 1;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.04);
    border-left: none !important;
  }
  .gz2-preview-pick-row:last-child { border-right: none; }
  .gz2-preview-pick-row[data-pick-row="1"].is-filled { border-top: 2px solid var(--t-primary); padding-left: 6px; }
  .gz2-preview-pick-num { font-size: 16px; min-width: auto; }
  .gz2-preview-pick-logo { width: 26px; height: 26px; }
  .gz2-preview-pick-name { font-size: 9px; white-space: normal; }
  .gz2-pick-text { width: 100%; text-align: center; }
  .gz2-pick-sublabel { display: none; }
}

/* ════════════════════════════════
   ≤ 860px  tablet portrait
   ════════════════════════════════ */
@media (max-width: 860px) {
  .gz2-team-inner  { padding: 24px 20px 20px; }
  .gz2-team-grid   { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .gz2-form-shell  { padding: 20px 20px 48px; }
  .gz2-step-bar    { padding: 16px 20px 0; }
  .gz2-field-grid  { grid-template-columns: 1fr; }
  .gz2-field-grid .wide { grid-column: 1; }
  .gz2-radio-cards { grid-template-columns: repeat(3, 1fr); }
  .gz2-form-heading { margin-bottom: 24px; }
}

/* ════════════════════════════════
   ≤ 640px  MOBILE — full rebuild
   ════════════════════════════════ */
@media (max-width: 640px) {

  /* ── copy variants ── */
  .gz2-m-only { display: inline; }
  .gz2-d-only { display: none; }

  /* ────────────────────
     HERO / ENTRY SCREEN
     ──────────────────── */

  /* Darker, simpler overlay — kills the muddy video noise */
  .gz2-entry-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.80) 60%,
      rgba(0,0,0,0.92) 100%
    );
  }
  /* Decorative grid is visual noise on small screens */
  .gz2-entry-grid { display: none; }

  /* Column flow from top, not centered vertically */
  .gz2-entry {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Content: starts just below navbar */
  .gz2-entry-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-height) + 24px) 20px 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  /* Kicker: tighter */
  .gz2-entry-kicker {
    font-size: 10px;
    margin-bottom: 10px;
    gap: 8px;
  }
  .gz2-entry-kicker::before,
  .gz2-entry-kicker::after { width: 18px; }

  /* Heading: controlled — bold but not a poster */
  .gz2-entry-title {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 0.9;
    margin-bottom: 12px;
  }
  .gz2-entry-title em { -webkit-text-stroke-width: 1px; }

  /* Sub: 1–2 lines, tight */
  .gz2-entry-sub {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 100%;
    color: rgba(255,255,255,0.6);
  }

  /* Actions: full-width stack */
  .gz2-entry-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-bottom: 0;
  }
  .gz2-entry-actions .gz2-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    padding: 14px 20px;
    font-size: 13px;
  }

  /* Stats HUD: inline compact 3-col grid */
  .gz2-entry-hud {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - 32px);
    max-width: 440px;
    margin: 18px auto 0;
    transform: none;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .gz2-entry-hud-item {
    padding: 10px 6px;
    min-width: 0;
    flex: unset;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-top: none;
  }
  .gz2-entry-hud-item:nth-child(3n) { border-right: none; }
  .gz2-entry-hud-item:last-child     { border-right: none; }
  .gz2-entry-hud-item:nth-child(n+4) { border-bottom: none; }
  .gz2-entry-hud-item span   { font-size: 9px; letter-spacing: 0.09em; margin-bottom: 2px; }
  .gz2-entry-hud-item strong { font-size: 17px; }

  /* Sticky CTA: slide up only when inline button leaves viewport */
  .gz2-mobile-sticky {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 11px 20px calc(11px + env(safe-area-inset-bottom, 0px));
    background: rgba(6,6,12,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 400;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .gz2-mobile-sticky.gz2-sticky-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .gz2-mobile-sticky .gz2-btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    white-space: nowrap;
    padding: 13px 20px;
    font-size: 13px;
  }

  /* ────────────────────
     TEAM SELECTION
     ──────────────────── */

  .gz2-team-inner { padding: 16px 16px 12px; }

  /* Header: tight */
  .gz2-team-header { margin-bottom: 16px; text-align: left; }
  .gz2-team-header h2 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1;
    margin-bottom: 6px;
  }
  .gz2-team-header p { font-size: 12px; max-width: 100%; }

  /* Disclaimer: compact info tag */
  .gz2-team-disclaimer { padding: 7px 10px; margin-top: 8px; }
  .gz2-team-disclaimer p { font-size: 11px; line-height: 1.45; }

  /* No room for preview panel on mobile — hide it */
  .gz2-team-preview { display: none; }

  /* Grid: 2 columns */
  .gz2-team-layout { grid-template-columns: 1fr; }
  .gz2-team-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Cards: compact */
  .gz2-team-card { padding: 9px 10px 8px; }
  .gz2-team-logo-wrap {
    aspect-ratio: unset;
    height: 58px;
    width: 100%;
    margin-bottom: 6px;
  }
  .gz2-team-logo-wrap img { width: 58px; height: 58px; }
  .gz2-team-name  { font-size: 12px; margin-bottom: 2px; }
  .gz2-team-trait { font-size: 9px; line-height: 1.3; }

  /* Remove tap-lingering ✕ hint on touch devices */
  .gz2-pick-remove { display: none !important; }

  /* Badges: readable size on small cards */
  .gz2-pick-badge { font-size: 7px; padding: 3px 5px; letter-spacing: 0.1em; border-radius: 3px; }

  /* Selected state: less dramatic lift on mobile */
  .gz2-team-card[data-pick-num]    { transform: translateY(-2px) scale(1.01); }
  .gz2-team-card[data-pick-num="1"]{ transform: translateY(-3px) scale(1.02); }

  /* Footer: stack buttons full width, contained */
  .gz2-team-footer {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 24px;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .gz2-team-footer .gz2-btn {
    width: 100%;
    box-sizing: border-box; /* padding included in width — prevents overflow */
    justify-content: center;
    white-space: nowrap;
    padding: 14px 16px;   /* override btn-lg's 36px h-padding */
    font-size: 12px;
    letter-spacing: 0.1em;
    min-width: 0;
  }
  /* Count sub-line is self-evident from label on mobile — hide it */
  .gz2-lock-count { display: none; }

  /* ────────────────────
     FORM SCREEN
     ──────────────────── */

  /* Step bar */
  .gz2-step-bar { padding: 10px 16px 0; }
  .gz2-step-track { margin-bottom: 10px; }
  .gz2-step-dot {
    width: 24px; height: 24px;
    font-size: 10px;
  }
  .gz2-step-node:not(:last-child)::after { top: 12px; }
  .gz2-step-label { display: none; }

  /* Pref strip */
  .gz2-pref-strip       { padding: 5px 16px; gap: 5px; }
  .gz2-pref-strip-note  { display: none; }
  .gz2-pref-strip-label { font-size: 8px; flex-shrink: 0; }
  .gz2-pref-strip-items { gap: 4px; }
  .gz2-pref-strip-item  { padding: 3px 7px 3px 5px; }
  .gz2-pref-strip-name  { font-size: 10px; }

  /* Form shell */
  .gz2-form-shell   { padding: 12px 16px 32px; }
  .gz2-form-heading { margin-bottom: 16px; }
  .gz2-form-heading .gz2-step-tag { margin-bottom: 6px; }
  .gz2-form-heading h2 {
    font-size: clamp(24px, 6.5vw, 36px);
    line-height: 0.95;
  }

  /* Fields */
  .gz2-field-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .gz2-field-grid .wide { grid-column: 1; }
  .gz2-label { font-size: 10px; gap: 5px; }
  .gz2-label input,
  .gz2-label select { padding: 12px 14px; font-size: 14px; }

  /* Form nav: stacked — primary on top (column-reverse), both full width */
  .gz2-form-nav {
    flex-direction: column-reverse;
    gap: 6px;
    margin-top: 18px;
  }
  .gz2-form-nav .gz2-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
  }
  /* Back button: secondary, visually lighter */
  .gz2-form-nav [data-form-prev] {
    background: transparent;
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.38);
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    box-shadow: none;
  }

  /* Choices / chips */
  .gz2-chip { padding: 8px 14px; font-size: 12px; }
  .gz2-radio-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gz2-radio-card label { padding: 14px 8px; min-height: 72px; gap: 6px; }
  .gz2-radio-card label .rc-icon { font-size: 20px; }
  .gz2-radio-card label .rc-name  { font-size: 11px; }

  /* Summary / confirmation */
  .gz2-summary-grid { grid-template-columns: 1fr; }
  .gz2-summary-item { border-right: none; }
  .gz2-confirm-picks { padding: 16px 12px 14px; }
  .gz2-confirm-pick  { padding: 0 4px; }
  .gz2-confirm-pick-logo { width: 48px; height: 48px; }

  /* Corner glow orbs: tame them on mobile */
  .gz2-cg-1 { width: 240px; height: 240px; top: -90px;  left: -70px; filter: blur(100px); }
  .gz2-cg-2 { width: 180px; height: 180px; top: -70px;  right: -55px; filter: blur(80px); }
  .gz2-cg-3 { width: 280px; height: 150px; bottom: -80px; filter: blur(90px); }

  /* ────────────────────
     SUCCESS SCREEN
     ──────────────────── */
  .gz2-success-title { font-size: clamp(50px, 13vw, 78px); }
  .gz2-success-sub   { font-size: 15px; margin-bottom: 24px; }
  .gz2-success-logos { gap: 8px; }
  .gz2-success-logo-item:nth-child(1) img,
  .gz2-success-logo-item:nth-child(3) img { width: 64px; height: 64px; }
  .gz2-success-logo-item:nth-child(2) img { width: 110px; height: 110px; }
  .gz2-success-actions { flex-direction: column; align-items: center; }
  .gz2-success-actions .gz2-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    white-space: nowrap;
  }
}

/* ════════════════════════════════
   ≤ 430px  large phones (iPhone 14 Plus, etc.)
   ════════════════════════════════ */
@media (max-width: 430px) {
  .gz2-entry-title     { font-size: clamp(40px, 10.5vw, 52px); }
  .gz2-team-logo-wrap  { height: 56px; }
  .gz2-team-logo-wrap img { width: 48px; height: 48px; }
}

/* ════════════════════════════════
   ≤ 390px  iPhone 14 Pro / standard
   ════════════════════════════════ */
@media (max-width: 390px) {
  .gz2-entry-content   { padding-top: calc(var(--nav-height) + 18px); }
  .gz2-entry-title     { font-size: clamp(38px, 10vw, 48px); margin-bottom: 10px; }
  .gz2-entry-sub       { font-size: 12px; margin-bottom: 14px; }
  .gz2-entry-hud-item strong { font-size: 15px; }
  .gz2-team-card       { padding: 10px 8px 8px; }
  .gz2-form-heading h2 { font-size: clamp(22px, 6vw, 32px); }
}

/* ════════════════════════════════
   ≤ 375px  iPhone SE / 13 mini
   ════════════════════════════════ */
@media (max-width: 375px) {
  .gz2-entry-title  { font-size: 38px; }
  .gz2-team-name    { font-size: 11px; }
  .gz2-team-trait   { font-size: 8px; }
  .gz2-entry-hud-item { padding: 9px 5px; }
}

/* ════════════════════════════════
   ≤ 320px  very small
   ════════════════════════════════ */
@media (max-width: 320px) {
  .gz2-entry-content  { padding-top: calc(var(--nav-height) + 14px); }
  .gz2-entry-title    { font-size: 34px; margin-bottom: 8px; }
  .gz2-entry-sub      { font-size: 12px; margin-bottom: 12px; }
  .gz2-entry-hud      { width: calc(100% - 24px); }
  .gz2-entry-hud-item { padding: 8px 4px; }
  .gz2-entry-hud-item strong { font-size: 14px; }
  .gz2-team-card      { padding: 10px 6px 8px; }
  .gz2-team-name      { font-size: 10px; }
  .gz2-team-logo-wrap { height: 50px; }
  .gz2-team-logo-wrap img { width: 42px; height: 42px; }
  .gz2-btn            { padding: 12px 14px; font-size: 11px; letter-spacing: 0.08em; }
  .gz2-form-shell     { padding: 8px 12px 28px; }
  .gz2-step-bar       { padding: 8px 12px 0; }
  .gz2-pref-strip     { padding: 4px 12px; }
  .gz2-form-heading h2 { font-size: 21px; }
}


/* ══════════════════════════════════════════════════
   NEW FORM COMPONENTS — 8-Step Registration
   ══════════════════════════════════════════════════ */

/* ── Progress label under step dots ── */
.gz2-step-progress-text {
  text-align: center;
  padding-bottom: 6px;
}
.gz2-step-progress-text span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── Select element — custom arrow ── */
.gz2-label select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.gz2-label select option {
  background: #1a1a2e;
  color: #fff;
}

/* ── Textarea (fieldset version) ── */
.gz2-fieldset textarea {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  resize: vertical;
  min-height: 72px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.gz2-fieldset textarea::placeholder { color: rgba(255,255,255,0.2); }
.gz2-fieldset textarea:focus {
  border-color: var(--t-primary);
  box-shadow: 0 0 0 3px var(--t-glow);
}

/* ── Field hint text ── */
.gz2-field-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  font-style: italic;
  margin: -4px 0 10px;
  line-height: 1.5;
}

/* ── Conditional field wrapper ── */
.gz2-field-conditional {
  margin-bottom: 4px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.gz2-field-conditional[hidden] { display: none; }

/* ══════════════════════════
   YES / NO TOGGLE BUTTONS
   ══════════════════════════ */
.gz2-yn-group {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-shrink: 0;
}

.gz2-yn-btn {
  padding: 10px 26px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 72px;
  text-align: center;
}
.gz2-yn-btn:hover {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}
.gz2-yn-btn.is-selected-yes {
  background: rgba(34,197,94,0.18);
  border-color: #22C55E;
  color: #4ADE80;
  box-shadow: 0 0 14px rgba(34,197,94,0.2);
}
.gz2-yn-btn.is-selected-no {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

/* ══════════════════════════
   MEDICAL SECTION
   ══════════════════════════ */
.gz2-medical-section {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.gz2-medical-intro {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 0;
  background: rgba(0,0,0,0.15);
  font-style: italic;
}

.gz2-medical-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.gz2-medical-row:hover { background: rgba(255,255,255,0.02); }

.gz2-medical-q {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  flex: 1;
}

/* Medical details expand area */
.gz2-medical-details-wrap {
  padding: 16px 20px;
  background: rgba(0,0,0,0.1);
}
.gz2-add-details-btn {
  background: none;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 6px;
  color: rgba(255,255,255,0.38);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.gz2-add-details-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
}
.gz2-medical-details-box {
  margin-top: 14px;
}
.gz2-medical-details-box[hidden] { display: none; }

/* ══════════════════════════
   PARENT ACKNOWLEDGEMENT
   ══════════════════════════ */
.gz2-ack-block {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px 22px 18px;
  margin-bottom: 24px;
}
.gz2-ack-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 18px;
}
.gz2-ack-desc em {
  font-style: normal;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.gz2-ack-example {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 10px 0 0;
  font-style: italic;
}
.gz2-ack-example em {
  font-style: normal;
  color: rgba(255,255,255,0.4);
}

/* Payment agreement checkbox (reuses .gz2-confirm-check) */
.gz2-payment-check {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 18px 18px 18px;
  background: rgba(0,0,0,0.2);
}
.gz2-payment-check span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ══════════════════════════
   REVIEW SCREEN SECTIONS
   ══════════════════════════ */
.gz2-review-section {
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.gz2-review-section--last { margin-bottom: 24px; }

.gz2-review-heading {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-primary);
  padding: 12px 20px 10px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin: 0;
  transition: color 0.5s;
}

/* Squad picks inside review — flush with section border-radius */
.gz2-review-section .gz2-confirm-picks {
  border-radius: 0;
  border: none;
  border-bottom: none;
}
.gz2-review-section .gz2-confirm-picks-note {
  border-radius: 0;
  border: none;
  margin-bottom: 0;
}

/* Summary grid inside review section */
.gz2-review-section .gz2-summary-grid {
  border-radius: 0;
}
.gz2-review-section .gz2-summary-item {
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gz2-review-section .gz2-summary-item:nth-child(even) { border-right: none; }

/* Medical flags in review */
.gz2-sum-medical-flags {
  list-style: none;
  padding: 12px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gz2-sum-medical-flag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}
.gz2-flag-yes {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(34,197,94,0.22);
  color: #4ADE80;
  border: 1px solid rgba(34,197,94,0.35);
  flex-shrink: 0;
  white-space: nowrap;
}
.gz2-sum-medical-clean {
  padding: 14px 20px;
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.gz2-sum-medical-details {
  padding: 0 20px 14px;
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Acknowledgement in review */
.gz2-review-ack-val {
  padding: 12px 20px 4px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.gz2-review-ack-note {
  padding: 4px 20px 14px;
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── Success screen footer note ── */
.gz2-success-footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  margin-top: 20px;
  line-height: 1.6;
  font-style: italic;
}

/* ══════════════════════════
   REVIEW STEP: OPTIONAL RECEIPT
   ══════════════════════════ */
.gz2-receipt-step {
  margin: 16px 0 4px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.gz2-receipt-step-head {
  margin-bottom: 14px;
}
.gz2-receipt-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.gz2-receipt-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}
.gz2-receipt-skip-note {
  font-size: 12px;
  color: rgba(255,200,70,0.55);
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ── Waitlist notice in review step ── */
.gz2-review-waitlist-notice {
  background: rgba(255,200,70,0.05);
  border: 1px solid rgba(255,200,70,0.10);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 14px 0 4px;
}
.gz2-review-waitlist-notice p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════
   SUCCESS: NOTICE BAR
   ══════════════════════════ */
.gz2-success-notice {
  background: rgba(255,200,70,0.06);
  border: 1px solid rgba(255,200,70,0.12);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,200,70,0.8);
  margin: 0 auto 24px;
  max-width: 440px;
  line-height: 1.5;
  text-align: center;
}

/* ══════════════════════════
   SUCCESS: PAYMENT CARD
   ══════════════════════════ */
.gz2-payment-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 auto 28px;
  max-width: 400px;
  width: 100%;
  text-align: left;
}
.gz2-payment-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-primary);
  margin: 0 0 14px;
  transition: color 0.5s;
}
.gz2-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  gap: 12px;
}
.gz2-payment-row:last-child { border-bottom: none; padding-bottom: 0; }
.gz2-payment-row span { color: rgba(255,255,255,0.38); flex-shrink: 0; }
.gz2-payment-row strong { color: #fff; text-align: right; }
.gz2-payment-row--amount strong {
  color: var(--t-primary);
  font-size: 16px;
  transition: color 0.5s;
}

/* ══════════════════════════
   SUCCESS: RECEIPT UPLOAD
   ══════════════════════════ */
.gz2-receipt-box {
  max-width: 400px;
  margin: 0 auto 20px;
  width: 100%;
  text-align: left;
}
.gz2-receipt-box-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 12px;
}
.gz2-receipt-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px dashed rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 26px 20px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  background: rgba(255,255,255,0.02);
  margin-bottom: 12px;
  user-select: none;
}
.gz2-receipt-dropzone:hover,
.gz2-receipt-dropzone.has-file {
  border-color: var(--t-primary);
  background: rgba(255,255,255,0.04);
}
.gz2-receipt-icon {
  width: 28px;
  height: 28px;
  color: var(--t-primary);
  opacity: 0.75;
  transition: color 0.5s;
}
.gz2-receipt-dz-text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.gz2-receipt-dz-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
#gz2-receipt-input { display: none; }

.gz2-receipt-preview-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gz2-receipt-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.gz2-receipt-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gz2-receipt-meta {
  flex: 1;
  min-width: 0;
}
.gz2-receipt-filename {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gz2-receipt-filesize {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.gz2-receipt-remove {
  background: none;
  border: none;
  color: rgba(255,80,80,0.4);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.gz2-receipt-remove:hover { color: rgba(255,80,80,0.9); }

/* WhatsApp receipt button — full width inside box */
.gz2-receipt-wa-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
}
.gz2-receipt-hint {
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
  font-style: italic;
}

/* Secondary actions (back link) */
.gz2-success-actions--secondary {
  margin-top: 16px;
  justify-content: center;
}

/* ══════════════════════════
   SUCCESS: WAITLIST STATE
   ══════════════════════════ */
.gz2-waitlist-tag {
  color: rgba(255,200,70,0.75);
}
.gz2-waitlist-title {
  opacity: 0.80;
}
.gz2-waitlist-emblem {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,1);
}
.gz2-waitlist-emblem svg {
  width: 100%;
  height: 100%;
}
.gz2-waitlist-note {
  background: rgba(255,200,70,0.05);
  border: 1px solid rgba(255,200,70,0.10);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 440px;
  margin: 0 auto 28px;
}
.gz2-waitlist-note p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   MOBILE OVERRIDES — NEW COMPONENTS
   ══════════════════════════════════════════════════ */

@media (max-width: 860px) {
  .gz2-medical-row { padding: 12px 16px; gap: 14px; }
  .gz2-medical-intro { padding: 12px 16px; font-size: 12px; }
  .gz2-medical-details-wrap { padding: 12px 16px; }
  .gz2-review-heading { padding: 10px 16px 8px; }
  .gz2-sum-medical-flags { padding: 10px 16px; }
  .gz2-sum-medical-flag { font-size: 12.5px; }
  .gz2-sum-medical-clean { padding: 12px 16px; }
  .gz2-sum-medical-details { padding: 0 16px 12px; }
  .gz2-review-ack-val { padding: 10px 16px 4px; font-size: 13px; }
  .gz2-review-ack-note { padding: 4px 16px 12px; }
  .gz2-ack-block { padding: 16px 16px 14px; }
}

@media (max-width: 640px) {
  /* Step progress text */
  .gz2-step-progress-text span { font-size: 9px; }

  /* Medical rows: stack vertically on mobile */
  .gz2-medical-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }
  .gz2-medical-q { font-size: 13px; }
  .gz2-yn-group { margin-top: 0; }

  /* YES/NO buttons: wider tap target on mobile */
  .gz2-yn-btn { padding: 10px 20px; min-width: 64px; font-size: 11px; }

  /* Ack block */
  .gz2-ack-block { padding: 14px 14px 12px; }
  .gz2-ack-desc { font-size: 13px; margin-bottom: 14px; }

  /* Review sections */
  .gz2-review-section { border-radius: 8px; }
  .gz2-review-section .gz2-summary-grid { grid-template-columns: 1fr; }
  .gz2-review-section .gz2-summary-item { border-right: none; }
  .gz2-confirm-picks { padding: 14px 10px 12px; }
  .gz2-confirm-pick-logo { width: 44px; height: 44px; }

  /* Payment checkbox text */
  .gz2-payment-check { padding: 14px 14px; }
  .gz2-payment-check span { font-size: 13px; }
}