/* ============================================
   VOTE CLUB - KII ARENS EDITION
   Bold concentric color blocks. Screenprint flat fills.
   Thick frames. Halftone dots. Concert poster energy.
   Red / White / Blue, always.
   ============================================ */

/* ---- RED WHITE BLUE PALETTE (Kii Arens saturated) ---- */
.page--voter-reg {
 --usa-red: #D41B2C;           /* punched-up poster red */
 --usa-red-bright: #FF1C31;    /* neon screenprint red */
 --usa-blue: #0033A0;          /* flat poster blue */
 --usa-blue-deep: #001A5E;
 --usa-white: #FFF5E8;         /* warm cream, like poster stock */
 --usa-gold: #F5C842;          /* brighter gold - like Kii's yellow accents */
 --usa-deep-navy: #060D1F;
 --usa-cyan: #00B4D8;          /* accent - Blondie poster border teal */
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   HALFTONE + SCREENPRINT TEXTURE
   Kii Arens posters have that visible dot/grain feel.
   ============================================ */

.vr-grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  /* Halftone-ish dot pattern via radial gradient tiling */
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* Second layer - coarser noise for screenprint ink texture */
.vr-grain::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

/* Vignette - dark poster edges */
.vr-grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 75% 65% at 50% 50%,
    transparent 35%,
    rgba(0,0,0,0.45) 100%
  );
}

/* Hide grain when page is not active */
.page--voter-reg:not(.active) .vr-grain {
  display: none;
}

/* ---- HERO / LANDING - KII ARENS POSTER ---- */
.vr-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--usa-deep-navy);
}

/* Thick poster border - like Kii Arens frame */
.vr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 8px solid var(--usa-cyan);
  z-index: 5;
  pointer-events: none;
  box-shadow: inset 0 0 0 4px var(--usa-deep-navy), inset 0 0 0 6px rgba(255,245,232,0.15);
}

/* Background: deep navy with subtle radial glow behind map */
.vr-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%,
      rgba(0,51,160,0.2) 0%,
      rgba(0,26,94,0.15) 40%,
      transparent 70%
    ),
    var(--usa-deep-navy);
}

/* Subtle red/blue light leak on edges */
.vr-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 0% 60%, rgba(212,27,44,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 40%, rgba(0,51,160,0.12) 0%, transparent 70%);
}

/* Stars row at top — poster feel */
.vr-hero__bg::after {
  content: '★ ★ ★ ★ ★';
  position: absolute;
  top: 5%;
  left: 0; right: 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 5vw;
  color: var(--usa-gold);
  opacity: 0.25;
  white-space: nowrap;
  overflow: hidden;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

/* Slow rotate on the ring pattern - poster stays alive */
@keyframes vrRingDrift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* US Map — THE hero background visual. Big, bold, poster centerpiece */
.vr-hero__map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  /* Push map down slightly so text sits in the top-center clean zone */
  padding-top: 8vh;
}

.vr-hero__map svg {
  width: 110%;
  max-width: 1200px;
  height: auto;
  /* Map outline gets the red fill with blue stroke for that poster-print look */
  filter: drop-shadow(0 0 40px rgba(212,27,44,0.15))
          drop-shadow(0 0 80px rgba(0,51,160,0.1));
}

/* Continental US path — bold red fill */
.vr-hero__map svg > path:first-of-type {
  fill: var(--usa-red);
  opacity: 0.35;
  stroke: var(--usa-cyan);
  stroke-width: 1.5;
}

/* Alaska path */
.vr-hero__map svg > path:nth-of-type(2) {
  fill: var(--usa-red);
  opacity: 0.25;
  stroke: var(--usa-cyan);
  stroke-width: 1;
}

/* Hawaii circles */
.vr-hero__map svg > circle:not(.vr-map-dots circle) {
  fill: var(--usa-red);
  opacity: 0.25;
  stroke: var(--usa-cyan);
  stroke-width: 0.8;
}

/* Animated member dots — now more visible */
.vr-hero__map .vr-map-dots circle {
  filter: drop-shadow(0 0 6px currentColor);
}

/* Thick decorative star - top right, like a poster registration mark */
.vr-hero::after {
  content: '★';
  position: absolute;
  top: 4%;
  right: 4%;
  font-size: 80px;
  color: var(--usa-gold);
  opacity: 0.2;
  z-index: 3;
  transform: rotate(-12deg);
  text-shadow: 2px 3px 0 rgba(0,0,0,0.4);
  /* Static - like a stamp on the poster */
}

/* Bottom-left star */
.vr-hero__content::before {
  content: '★';
  position: absolute;
  bottom: 2%;
  left: -10%;
  font-size: 120px;
  color: var(--usa-red);
  opacity: 0.08;
  z-index: 0;
  transform: rotate(15deg);
  pointer-events: none;
}

.vr-hero__content {
  position: relative;
  z-index: 6;
  max-width: 780px;
  padding: var(--space-xl);
}

.vr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 4px;
  background: var(--usa-deep-navy);
  border: 3px solid var(--usa-gold);
  color: var(--usa-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  transform: rotate(-1.5deg);
  box-shadow: 3px 4px 0 rgba(0,0,0,0.5);
}

.vr-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--usa-red-bright);
  box-shadow: 0 0 8px rgba(255,28,49,0.9);
  animation: vrPulse 1.5s ease-in-out infinite;
}

@keyframes vrPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(255,28,49,0.9); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(255,28,49,0.5); }
}

.vr-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--usa-white);
  margin-bottom: var(--space-lg);
  /* Hard screenprint offset shadow - no blur */
  text-shadow:
    4px 5px 0px var(--usa-red),
    8px 10px 0px rgba(0,0,0,0.4);
}

.vr-hero__title em {
  font-style: normal;
  color: var(--usa-red-bright);
 -webkit-text-fill-color: var(--usa-red-bright);
  /* No gradient - flat color like a poster */
  text-shadow:
    4px 5px 0px var(--usa-blue-deep),
    8px 10px 0px rgba(0,0,0,0.3);
}

.vr-hero__rule {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--usa-gold);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.vr-hero__rule strong {
  color: var(--usa-white);
  text-decoration: underline;
  text-decoration-color: var(--usa-red-bright);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.vr-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,245,232,0.55);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto var(--space-xl);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* BIG POSTER CTA - flat, hard offset shadow, no border-radius */
.vr-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 56px;
  border-radius: 4px;
  background: var(--usa-red);
  color: var(--usa-white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 4px solid var(--usa-white);
  transition: all 0.2s;
  box-shadow:
    5px 6px 0px var(--usa-blue-deep),
    9px 10px 0px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

.vr-hero__cta::before {
  content: '★';
  position: absolute;
  left: 18px;
  font-size: 14px;
  opacity: 0.8;
  color: var(--usa-gold);
}

.vr-hero__cta::after {
  content: '★';
  position: absolute;
  right: 18px;
  font-size: 14px;
  opacity: 0.8;
  color: var(--usa-gold);
}

.vr-hero__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow:
    7px 8px 0px var(--usa-blue-deep),
    11px 12px 0px rgba(0,0,0,0.3);
  background: var(--usa-red-bright);
}

.vr-hero__cta svg {
  width: 22px;
  height: 22px;
}

.vr-hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: none;
  position: relative;
}

/* Thick stripe divider - poster registration marks feel */
.vr-hero__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  right: -20%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--usa-red) 0px,
    var(--usa-red) 20px,
    var(--usa-white) 20px,
    var(--usa-white) 24px,
    var(--usa-blue) 24px,
    var(--usa-blue) 44px,
    var(--usa-white) 44px,
    var(--usa-white) 48px
  );
  opacity: 0.5;
}

.vr-hero__stat {
  text-align: center;
}

.vr-hero__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--usa-white);
  letter-spacing: -0.02em;
  text-shadow: 3px 3px 0px var(--usa-red), 0 0 0 transparent;
}

.vr-hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
  font-weight: 600;
}

/* ---- STEP FLOW ---- */
.vr-flow {
  display: none;
  background: var(--usa-deep-navy);
  min-height: 100vh;
  position: relative;
}

.vr-flow.active {
  display: block;
}

/* Bold poster rings on flow - thicker, Kii Arens style */
.vr-flow::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 50% 30%,
    transparent 0px,
    transparent 100px,
    rgba(212,27,44,0.04) 100px,
    rgba(212,27,44,0.04) 108px,
    transparent 108px,
    transparent 200px,
    rgba(0,51,160,0.03) 200px,
    rgba(0,51,160,0.03) 206px
  );
  pointer-events: none;
  z-index: 0;
}

/* Progress bar - red/white/blue */
.vr-progress {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  height: 4px;
  background: rgba(255,255,255,0.06);
}

.vr-progress__bar {
  height: 100%;
  background: linear-gradient(90deg,
    var(--usa-red),
    var(--usa-white),
    var(--usa-blue),
    var(--usa-red),
    var(--usa-white),
    var(--usa-blue)
  );
  background-size: 300% 100%;
  animation: vrRainbowBar 4s linear infinite;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}

@keyframes vrRainbowBar {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

/* Step container */
.vr-step {
  display: none;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  animation: vrStepIn 0.5s var(--ease-out) forwards;
  position: relative;
  z-index: 1;
}

.vr-step.active {
  display: block;
}

@keyframes vrStepIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.vr-step__num {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--usa-red-bright);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.vr-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--usa-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(191,10,48,0.2);
}

.vr-step__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* Step 1: State selection */
.vr-state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: var(--space-xl);
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(191,10,48,0.4) transparent;
}

.vr-state-grid::-webkit-scrollbar { width: 4px; }
.vr-state-grid::-webkit-scrollbar-track { background: transparent; }
.vr-state-grid::-webkit-scrollbar-thumb { background: rgba(191,10,48,0.4); border-radius: 4px; }

.vr-state-btn {
  padding: 10px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.vr-state-btn:hover {
  background: rgba(191,10,48,0.15);
  color: var(--usa-white);
  border-color: rgba(191,10,48,0.4);
}

.vr-state-btn.selected {
  background: var(--usa-red);
  border-color: var(--usa-white);
  color: var(--usa-white);
  font-weight: 800;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.4);
}

/* Quick search */
.vr-state-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: var(--space-md);
}

.vr-state-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--usa-white);
  font-size: var(--text-sm);
  outline: none;
  font-family: var(--font-body);
}

.vr-state-search input::placeholder {
  color: rgba(255,255,255,0.25);
}

.vr-state-search svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.3);
}

/* Step 2: Name + email */
.vr-form-group {
  margin-bottom: var(--space-md);
}

.vr-form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.vr-form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--usa-white);
  font-size: var(--text-base);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vr-form-group input:focus {
  border-color: var(--usa-red-bright);
  box-shadow: 0 0 0 4px rgba(191,10,48,0.2), 0 0 30px rgba(191,10,48,0.1);
}

.vr-form-group input::placeholder {
  color: rgba(255,255,255,0.2);
}

/* Step 3: Result */
.vr-result {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.vr-result__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 36px;
}

.vr-result__icon--registered {
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow:
    0 0 40px rgba(255,255,255,0.1),
    0 0 80px rgba(191,10,48,0.1);
}

.vr-result__icon--not-registered {
  background: rgba(191,10,48,0.15);
  border: 3px solid rgba(191,10,48,0.4);
  box-shadow:
    0 0 40px rgba(191,10,48,0.15),
    0 0 80px rgba(191,10,48,0.05);
}

/* Vote Club member number - the big flex */
.vr-result__club-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--usa-gold);
  text-shadow: 2px 3px 0px rgba(0,0,0,0.5);
}

.vr-result__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--usa-white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(191,10,48,0.2);
}

.vr-result__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto var(--space-md);
}

/* Fight club rule callout */
.vr-result__rule {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--usa-gold);
  margin-bottom: var(--space-lg);
  padding: 10px 24px;
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 6px;
  background: rgba(255,215,0,0.04);
  text-shadow: 0 0 12px rgba(255,215,0,0.2);
}

.vr-result__rule strong {
  color: var(--usa-white);
}

.vr-result__points-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255,215,0,0.08);
  border: 2px solid rgba(255,215,0,0.25);
  border-radius: 30px;
  color: var(--usa-gold);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  box-shadow: 0 0 30px rgba(255,215,0,0.08);
}

.vr-result__points-badge svg {
  width: 18px;
  height: 18px;
}

/* CTA buttons */
.vr-cta-row {
  display: flex;
  gap: 12px;
  margin-top: var(--space-lg);
}

.vr-cta-row--center {
  justify-content: center;
}

.vr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.vr-btn--primary {
  background: var(--usa-red);
  color: var(--usa-white);
  flex: 1;
  border: 3px solid var(--usa-white);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
}

.vr-btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.4);
  background: var(--usa-red-bright);
}

.vr-btn--primary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.vr-btn--secondary {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--usa-white);
}

.vr-btn--secondary:hover {
  background: rgba(255,255,255,0.12);
}

.vr-btn--register {
  background: var(--usa-red);
  color: var(--usa-white);
  flex: 1;
  border: 3px solid var(--usa-white);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
}

.vr-btn--register:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.4);
  background: var(--usa-red-bright);
}

.vr-btn svg {
  width: 16px;
  height: 16px;
}

/* ---- STEP 4: SHAREABLE CARD BUILDER ---- */
.vr-card-builder {
  text-align: center;
}

.vr-share-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto var(--space-xl);
  overflow: hidden;
  border-radius: 4px;
  border: 5px solid var(--usa-cyan);
  box-shadow: 6px 8px 0px rgba(0,0,0,0.4);
}

.vr-share-card__bg {
  position: absolute;
  inset: 0;
  background: var(--usa-blue-deep);
}

/* Star-burst pattern on share card */
.vr-share-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg 10deg,
    rgba(191,10,48,0.3) 10deg 11deg,
    transparent 11deg 20deg,
    rgba(255,255,255,0.15) 20deg 21deg
  );
  animation: vrCardSpin 60s linear infinite;
}

@keyframes vrCardSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Wavy stripes on bottom of card */
.vr-share-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: repeating-linear-gradient(
    180deg,
    rgba(191,10,48,0.4) 0px,
    rgba(191,10,48,0.4) 5px,
    rgba(255,255,255,0.2) 5px,
    rgba(255,255,255,0.2) 10px
  );
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
 -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
  mask-size: cover;
 -webkit-mask-size: cover;
  z-index: 1;
}

.vr-share-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--space-xl);
}

/* VOTE CLUB label on share card */
.vr-share-card__club-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

.vr-share-card__club-number {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  color: var(--usa-gold);
  text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.vr-share-card__status {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.vr-share-card__status--registered {
  color: #66FF66;
}

.vr-share-card__status--not-registered {
  color: var(--usa-red-bright);
}

.vr-share-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--usa-white);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 20px rgba(191,10,48,0.3);
}

.vr-share-card__state {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.vr-share-card__question {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--usa-red-bright);
  text-shadow: 1px 2px 0px rgba(0,0,0,0.3);
}

.vr-share-card__logo {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--usa-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 3;
}

.vr-share-card__logo img {
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Card color themes - patriotic */
.vr-card-themes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.vr-card-theme {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}

.vr-card-theme:hover {
  transform: scale(1.2);
}

.vr-card-theme.selected {
  border-color: var(--usa-white);
  box-shadow: 0 0 0 3px rgba(191,10,48,0.4), 0 0 20px rgba(191,10,48,0.3);
}

.vr-card-theme--dark { background: linear-gradient(135deg, var(--usa-deep-navy), var(--usa-blue-deep)); }
.vr-card-theme--pink { background: linear-gradient(135deg, #4a0010, var(--usa-red)); }
.vr-card-theme--blue { background: linear-gradient(135deg, #001040, var(--usa-blue)); }
.vr-card-theme--orange { background: linear-gradient(135deg, #3d1a00, #CC4400); }
.vr-card-theme--green { background: linear-gradient(135deg, #002a1a, #006644); }

/* Share buttons */
.vr-share-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.vr-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--usa-white);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.vr-share-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.vr-share-btn svg {
  width: 18px;
  height: 18px;
}

.vr-share-btn--ig { border-color: rgba(191,10,48,0.3); }
.vr-share-btn--ig:hover { background: rgba(191,10,48,0.15); box-shadow: 0 0 20px rgba(191,10,48,0.1); }
.vr-share-btn--x { border-color: rgba(255,255,255,0.15); }
.vr-share-btn--tiktok { border-color: rgba(191,10,48,0.3); }
.vr-share-btn--tiktok:hover { background: rgba(191,10,48,0.1); }
.vr-share-btn--copy { border-color: rgba(255,255,255,0.15); }

/* ---- UPSELL ---- */
.vr-upsell {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.vr-upsell__confetti {
  font-size: 48px;
  margin-bottom: var(--space-md);
}

.vr-upsell__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--usa-white);
  margin-bottom: var(--space-sm);
}

.vr-upsell__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto var(--space-xl);
}

.vr-upsell__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.vr-upsell__card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.vr-upsell__card:hover {
  background: rgba(191,10,48,0.08);
  border-color: var(--usa-red);
  box-shadow: 0 0 30px rgba(191,10,48,0.1);
}

.vr-upsell__card-icon {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.vr-upsell__card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--usa-white);
  margin-bottom: 4px;
}

.vr-upsell__card-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ---- ARTIST PARTNER BANNER ---- */
.vr-artist-banner {
  position: relative;
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(0,40,104,0.15), rgba(191,10,48,0.1));
  border: 2px solid rgba(191,10,48,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  cursor: pointer;
  transition: all 0.3s;
}

.vr-artist-banner:hover {
  background: linear-gradient(135deg, rgba(0,40,104,0.2), rgba(191,10,48,0.15));
  border-color: rgba(191,10,48,0.4);
  box-shadow: 0 0 40px rgba(191,10,48,0.1);
}

.vr-artist-banner__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(191,10,48,0.3);
}

.vr-artist-banner__text {
  flex: 1;
}

.vr-artist-banner__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--usa-white);
}

.vr-artist-banner__msg {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.vr-artist-banner__badge {
  padding: 6px 14px;
  background: rgba(191,10,48,0.15);
  border: 2px solid rgba(191,10,48,0.3);
  color: var(--usa-red-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 30px;
  flex-shrink: 0;
}

/* ---- LEADERBOARD ---- */
.vr-leaderboard {
  background: linear-gradient(180deg, var(--usa-blue-deep) 0%, #000D1A 100%);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

/* Stars above leaderboard - bolder poster feel */
.vr-leaderboard::before {
  content: '★  ★  ★  ★  ★';
  display: block;
  text-align: center;
  color: var(--usa-gold);
  font-size: 18px;
  letter-spacing: 16px;
  margin-bottom: var(--space-md);
  opacity: 0.3;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.4);
}

.vr-leaderboard__inner {
  max-width: 800px;
  margin: 0 auto;
}

.vr-leaderboard__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--usa-white);
  text-align: center;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(191,10,48,0.2);
}

.vr-leaderboard__sub {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
}

.vr-leaderboard__tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.vr-leaderboard__tab {
  padding: 8px 20px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.45);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.vr-leaderboard__tab:hover {
  background: rgba(255,255,255,0.08);
  color: var(--usa-white);
}

.vr-leaderboard__tab.active {
  background: var(--usa-red);
  color: var(--usa-white);
  border-color: var(--usa-white);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.4);
}

.vr-lb-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
  border-radius: 6px;
}

.vr-lb-row:hover {
  background: rgba(191,10,48,0.06);
}

.vr-lb-row__rank {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.vr-lb-row__rank--1 {
  color: var(--usa-gold);
  text-shadow: 0 0 15px rgba(255,215,0,0.5);
}
.vr-lb-row__rank--2 { color: #c0c0c0; text-shadow: 0 0 8px rgba(192,192,192,0.3); }
.vr-lb-row__rank--3 { color: #cd7f32; text-shadow: 0 0 8px rgba(205,127,50,0.3); }

.vr-lb-row__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(191,10,48,0.2), rgba(0,40,104,0.2));
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--usa-white);
  flex-shrink: 0;
  overflow: hidden;
}

.vr-lb-row__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vr-lb-row__name {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--usa-white);
}

.vr-lb-row__name small {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  font-size: var(--text-xs);
}

.vr-lb-row__count {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--usa-white);
  text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.vr-lb-row__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  width: 60px;
}

/* ---- DEADLINE TICKER ---- */
.vr-deadline {
  background: linear-gradient(90deg, var(--usa-red), var(--usa-red-bright), #CC0033);
  background-size: 200% 100%;
  animation: vrDeadlineShift 6s ease-in-out infinite alternate;
  padding: 12px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  border-bottom: 3px solid rgba(255,255,255,0.2);
}

@keyframes vrDeadlineShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.vr-deadline__text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vr-deadline__timer {
  display: flex;
  gap: 6px;
  align-items: center;
}

.vr-deadline__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.vr-deadline__sep {
  color: rgba(255,255,255,0.6);
  font-weight: 900;
}

/* ---- LOADING / CHECKING STATE ---- */
.vr-checking {
  text-align: center;
  padding: var(--space-3xl) 0;
}

/* Red/white/blue spinner */
.vr-checking__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.06);
  border-top-color: var(--usa-red-bright);
  border-right-color: var(--usa-white);
  border-bottom-color: var(--usa-blue);
  border-radius: 50%;
  animation: vrSpin 0.8s linear infinite;
  margin: 0 auto var(--space-lg);
}

@keyframes vrSpin {
  to { transform: rotate(360deg); }
}

.vr-checking__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
}

.vr-checking__dots::after {
  content: '';
  animation: vrDots 1.5s steps(4) infinite;
}

@keyframes vrDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* ---- TOAST / POINTS ANIMATION ---- */
.vr-points-fly {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--usa-gold);
  text-shadow: 2px 3px 0px rgba(0,0,0,0.4);
  filter: drop-shadow(0 0 20px rgba(212,168,67,0.3));
  pointer-events: none;
  z-index: 9999;
  animation: vrPointsFly 1.2s var(--ease-out) forwards;
}

@keyframes vrPointsFly {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(-10deg); }
  30% { opacity: 1; transform: translate(-50%, -50%) scale(1.15) rotate(3deg); }
  70% { opacity: 1; transform: translate(-50%, -60%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, -80%) scale(0.8) rotate(-5deg); }
}

/* ============================================
   🦅 BALD EAGLE FLYOVER ANIMATION
   Triggered on registration result
   ============================================ */
.vr-eagle {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  font-size: 80px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: vrEagleFly 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes vrEagleFly {
  0% {
    top: 70%;
    left: -15%;
    transform: scale(0.5) rotate(-15deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    top: 30%;
    left: 35%;
    transform: scale(1.3) rotate(5deg);
  }
  60% {
    top: 20%;
    left: 55%;
    transform: scale(1.5) rotate(-3deg);
  }
  80% {
    top: 25%;
    left: 80%;
    transform: scale(1.2) rotate(8deg);
    opacity: 1;
  }
  100% {
    top: 10%;
    left: 115%;
    transform: scale(0.8) rotate(15deg);
    opacity: 0;
  }
}

/* Eagle trail of stars */
.vr-eagle-star {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  color: var(--usa-gold);
  font-size: 24px;
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
  animation: vrStarTrail 1s ease-out forwards;
}

@keyframes vrStarTrail {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.3) rotate(90deg); }
  100% { opacity: 0; transform: scale(0.3) rotate(180deg) translateY(40px); }
}

/* Eagle screech flash */
.vr-eagle-flash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.15), transparent 70%);
  animation: vrFlash 0.4s ease-out forwards;
}

@keyframes vrFlash {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .vr-hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .vr-hero::after {
    font-size: 80px;
    top: 10%;
    right: 3%;
  }

  .vr-hero__stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .vr-state-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vr-upsell__cards {
    grid-template-columns: 1fr;
  }

  .vr-share-row {
    flex-direction: column;
  }

  .vr-share-btn {
    justify-content: center;
  }

  .vr-cta-row {
    flex-direction: column;
  }

  .vr-artist-banner {
    flex-direction: column;
    text-align: center;
  }

  .vr-hero__cta {
    width: 100%;
    justify-content: center;
  }

  .vr-deadline {
    flex-direction: column;
    gap: 8px;
  }

  .vr-eagle {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .vr-lb-row__label {
    display: none;
  }
  .vr-lb-row {
    gap: 10px;
  }
  .vr-state-grid {
    grid-template-columns: 1fr;
  }
  .vr-hero {
    padding: 48px 16px 32px;
  }
  .vr-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .vr-action-card {
    padding: var(--space-lg);
  }
}

/* ── Mobile touch targets ── */
@media (max-width: 768px) {
  .vr-state-btn { min-height: 44px; padding: 10px 16px; }
  .vr-leaderboard__tab { min-height: 44px; padding: 10px 12px; }
}
