/* ══════════════════════════════════════════════════
   FIFA WORLD CUP 2026 — QUIZ FUNNEL
   style.css
   ══════════════════════════════════════════════════ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Barlow:wght@400;500;600&display=swap');

/* ─── TOKENS ─── */
:root {
  --gold:         #FFD700;
  --gold-light:   #FFE966;
  --gold-dark:    #B8860B;
  --gold-glow:    rgba(255, 215, 0, 0.35);
  --green:        #00E676;
  --green-dark:   #00C853;
  --red:          #FF3D57;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;
  --bg-deepest:   #040810;
  --bg-deep:      #070D1A;
  --bg-mid:       #0C1628;
  --bg-card:      rgba(10, 18, 40, 0.82);
  --bg-glass:     rgba(255, 255, 255, 0.045);
  --border-gold:  rgba(255, 215, 0, 0.22);
  --border-white: rgba(255, 255, 255, 0.10);
  --text-primary: #FFFFFF;
  --text-dim:     rgba(255, 255, 255, 0.68);
  --text-faint:   rgba(255, 255, 255, 0.38);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-full:  999px;
  --ff-display:   'Bebas Neue', sans-serif;
  --ff-heading:   'Barlow Condensed', sans-serif;
  --ff-body:      'Barlow', sans-serif;
  --transition:   0.25s cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg-deepest);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── FIXED BACKGROUND LAYERS ─── */
.bg-stadium {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% -5%,  rgba(18, 52, 120, 0.75) 0%, transparent 70%),
    radial-gradient(ellipse 70%  50% at 10% 90%,  rgba(200,160,0,0.10)    0%, transparent 55%),
    radial-gradient(ellipse 60%  45% at 90% 85%,  rgba(0,180,80,0.06)     0%, transparent 55%),
    linear-gradient(180deg, #040810 0%, #070D1A 40%, #040810 100%);
}

/* SVG pitch lines overlay */
.bg-pitch {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.032;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 74px, rgba(255,255,255,1) 75px),
    repeating-linear-gradient(90deg,  transparent, transparent 74px, rgba(255,255,255,1) 75px);
}

/* Vignette */
.bg-vignette {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(4,8,16,0.85) 100%);
}

/* Floating orbs */
.orb {
  position: fixed; z-index: 0; border-radius: 50%; pointer-events: none;
  filter: blur(70px);
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.orb-1 { width: 400px; height: 400px; top: -10%;  left: -8%;  background: rgba(255,215,0,0.055); animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; bottom: 5%; right: -8%; background: rgba(0,200,100,0.04);  animation-delay: -7s; }
.orb-3 { width: 250px; height: 250px; top: 40%;   left: 55%;  background: rgba(40,90,200,0.06);  animation-delay: -13s; }

@keyframes orbDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.15); }
}

/* ─── CONFETTI CANVAS ─── */
#confetti-canvas {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
}

/* ─── PAGE WRAPPER ─── */
#app {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* ─── SECTION BASE ─── */
.screen {
  width: 100%; max-width: 520px;
  padding: 24px 16px 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  animation: screenIn 0.45s cubic-bezier(.4,0,.2,1) both;
}
.screen.active { display: flex; }

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

/* ─── TICKER ─── */
.ticker-wrap {
  width: 100vw; max-width: 100vw;
  overflow: hidden;
  background: rgba(255,215,0,0.07);
  border-bottom: 1px solid rgba(255,215,0,0.18);
  padding: 7px 0;
  margin-bottom: 0;
  position: relative; z-index: 2;
}
.ticker-inner {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: tickerScroll 18s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ─── HERO SCREEN ─── */
#screen-hero {
  justify-content: center;
  text-align: center;
  padding-top: 36px;
  gap: 0;
}

.hero-badge-row {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}
.badge {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
}

.trophy-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2px;
}
.trophy-emoji {
  font-size: 84px;
  line-height: 1;
  display: block;
  animation: trophyFloat 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(255,215,0,0.55));
}
@keyframes trophyFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
.trophy-ring {
  position: absolute;
  inset: 0; margin: auto;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px dashed rgba(255,215,0,0.25);
  animation: ringRotate 12s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(58px, 17vw, 100px);
  line-height: 0.88;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 80px rgba(255,215,0,0.25);
  margin-bottom: 4px;
}
.hero-title-accent {
  color: var(--gold);
  display: block;
  text-shadow: 0 0 60px rgba(255,215,0,0.5), 0 4px 24px rgba(0,0,0,0.4);
}

.hero-year {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: clamp(22px, 6vw, 34px);
  letter-spacing: 8px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.host-flags {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 18px;
}
.flag-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.flag-pill .flag { font-size: 18px; }

.hero-desc {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 340px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-desc strong { color: var(--gold); }

.stat-row {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat-pill {
  background: var(--bg-glass);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  backdrop-filter: blur(8px);
}
.stat-pill span { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.962); }

/* Primary gold */
.btn-primary {
  background: linear-gradient(135deg, #FFE031 0%, #FFD700 45%, #C8A800 100%);
  color: #070D1A;
  box-shadow: 0 8px 32px rgba(255,215,0,0.4), 0 2px 8px rgba(0,0,0,0.35);
  font-size: 20px;
  padding: 18px 40px;
  width: 100%; max-width: 340px;
  animation: btnPulse 2.4s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(255,215,0,0.40); }
  50%      { box-shadow: 0 8px 48px rgba(255,215,0,0.70), 0 0 80px rgba(255,215,0,0.12); }
}
.btn-primary:hover { transform: translateY(-3px); }

/* WhatsApp */
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  width: 100%; max-width: 340px;
  font-size: 18px; padding: 16px 36px;
  animation: waPulse 2.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.6); }
}
.btn-wa:hover { transform: translateY(-2px); }

/* Download / Install */
.btn-install {
  background: linear-gradient(135deg, #00E676 0%, #00C853 50%, #009624 100%);
  color: #040810;
  box-shadow: 0 8px 36px rgba(0,230,118,0.40), 0 2px 8px rgba(0,0,0,0.35);
  width: 100%; max-width: 360px;
  font-size: 19px; padding: 20px 36px;
  animation: installPulse 2s ease-in-out infinite;
}
@keyframes installPulse {
  0%,100% { box-shadow: 0 8px 36px rgba(0,230,118,0.40); }
  50%      { box-shadow: 0 10px 56px rgba(0,230,118,0.70), 0 0 90px rgba(0,230,118,0.12); }
}
.btn-install:hover { transform: translateY(-3px); }

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03) inset;
  width: 100%;
}

/* ─── QUIZ SCREEN ─── */
#screen-quiz {
  padding-top: 28px;
  justify-content: flex-start;
  gap: 20px;
}

/* Progress header */
.progress-header {
  width: 100%;
  display: flex; flex-direction: column; gap: 10px;
}
.progress-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.progress-label {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.score-live {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.score-live span { color: var(--green); }

/* Step dots */
.step-dots {
  display: flex; gap: 6px; align-items: center;
  margin-bottom: 2px;
}
.dot {
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.12);
  transition: all 0.35s ease;
  flex: 1;
}
.dot.active { background: var(--gold); box-shadow: 0 0 8px rgba(255,215,0,0.5); }
.dot.done   { background: var(--green); }

/* Bar track */
.bar-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.55s cubic-bezier(.4,0,.2,1);
}

/* Question card */
.q-card {
  padding: 26px 20px 22px;
  animation: cardIn 0.38s cubic-bezier(.4,0,.2,1) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}

.q-meta {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.q-meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255,215,0,0.8);
  animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1}50%{opacity:0.3} }

.q-emoji { font-size: 38px; line-height: 1; display: block; margin-bottom: 10px; }

.q-text {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(19px, 5.5vw, 26px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 22px;
}

/* Options */
.options-list {
  display: flex; flex-direction: column; gap: 10px;
}
.opt-btn {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255,255,255,0.045);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  position: relative; overflow: hidden;
}
.opt-btn::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.opt-btn:hover:not([disabled])::before { opacity: 1; }
.opt-btn:hover:not([disabled]) {
  border-color: rgba(255,215,0,0.38);
  background: rgba(255,215,0,0.06);
  transform: translateX(3px);
}
.opt-btn[disabled] { cursor: default; }

.opt-letter {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 50%;
  background: rgba(255,215,0,0.1);
  border: 1.5px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

/* Answer states */
.opt-btn.correct {
  background: rgba(0,230,118,0.12);
  border-color: var(--green);
  animation: correctBump 0.45s ease;
}
.opt-btn.correct .opt-letter {
  background: var(--green); border-color: var(--green); color: #040810;
}
.opt-btn.correct::before { background: var(--green); opacity: 1; }

.opt-btn.wrong {
  background: rgba(255,61,87,0.10);
  border-color: var(--red);
}
.opt-btn.wrong .opt-letter {
  background: var(--red); border-color: var(--red); color: #fff;
}
.opt-btn.wrong::before { background: var(--red); opacity: 1; }

@keyframes correctBump {
  0%,100% { transform: scale(1); }
  40%      { transform: scale(1.025) translateX(3px); }
}

/* Feedback message */
.feedback {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  opacity: 0; transform: translateY(6px);
  transition: all 0.3s ease 0.08s;
  display: none;
}
.feedback.show { opacity: 1; transform: translateY(0); display: block; }
.feedback.f-correct {
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.28);
  color: #5BFFA0;
}
.feedback.f-wrong {
  background: rgba(255,61,87,0.10);
  border: 1px solid rgba(255,61,87,0.28);
  color: #FF8A96;
}

/* Next button */
.next-wrap { margin-top: 18px; display: flex; justify-content: center; }
.btn-next {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #070D1A;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: none;
  box-shadow: 0 6px 24px rgba(255,215,0,0.35);
  transition: all 0.2s;
  animation: fadeUp 0.3s ease;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,215,0,0.5); }
.btn-next:active { transform: scale(0.96); }
@keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ─── RESULTS SCREEN ─── */
#screen-results {
  padding-top: 32px;
  justify-content: flex-start;
  gap: 20px;
}

.result-card {
  padding: 32px 22px 28px;
  text-align: center;
  animation: scaleUp 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes scaleUp {
  from { opacity:0; transform: scale(0.82); }
  to   { opacity:1; transform: scale(1); }
}

.result-trophy { font-size: 68px; display: block; margin-bottom: 10px; animation: trophyFloat 3s ease-in-out infinite; }

/* Circular score */
.score-ring-wrap {
  position: relative;
  width: 130px; height: 130px;
  margin: 10px auto 18px;
}
.score-ring-svg { width: 130px; height: 130px; transform: rotate(-90deg); }
.score-ring-bg  { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }
.score-ring-fg  {
  fill: none; stroke: var(--gold); stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 345;
  stroke-dashoffset: 345;
  transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1) 0.3s;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.6));
}
.score-ring-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.score-big {
  font-family: var(--ff-display);
  font-size: 50px; line-height: 1;
  color: var(--gold);
}
.score-of {
  font-family: var(--ff-heading);
  font-size: 14px; color: var(--text-dim);
}

.result-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 9vw, 42px);
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.result-msg {
  font-size: 14.5px; color: var(--text-dim);
  max-width: 320px; margin: 0 auto 20px;
  line-height: 1.6;
}

/* Star rating */
.star-row {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 16px;
}
.star { font-size: 24px; opacity: 0; animation: starPop 0.4s ease forwards; }
.star:nth-child(1) { animation-delay: 0.4s; }
.star:nth-child(2) { animation-delay: 0.55s; }
.star:nth-child(3) { animation-delay: 0.70s; }
.star:nth-child(4) { animation-delay: 0.85s; }
.star:nth-child(5) { animation-delay: 1.00s; }
@keyframes starPop {
  from { opacity:0; transform: scale(0.4) rotate(-20deg); }
  80%  { transform: scale(1.3) rotate(6deg); }
  to   { opacity:1; transform: scale(1) rotate(0); }
}

/* ─── SHARE CHALLENGE CARD ─── */
.share-card {
  padding: 24px 20px;
  text-align: center;
}

.share-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 7vw, 32px);
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.share-subtitle {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.share-subtitle strong { color: #fff; }

/* Counter bubbles */
.counter-bubbles {
  display: flex; justify-content: center; gap: 9px;
  margin-bottom: 22px;
}
.bubble {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.2);
  background: rgba(255,215,0,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
}
.bubble.filled {
  border-color: var(--wa-green);
  background: rgba(37,211,102,0.15);
  box-shadow: 0 0 14px rgba(37,211,102,0.35);
  animation: bubblePop 0.45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes bubblePop {
  from { transform: scale(0.5); opacity: 0.5; }
  to   { transform: scale(1); opacity: 1; }
}

.share-count-text {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.share-count-text .count-num { color: var(--gold); font-size: 20px; }

/* Progress bar for shares */
.share-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 22px;
}
.share-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wa-dark), var(--wa-green));
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

/* ─── UNLOCK SECTION ─── */
.unlock-card {
  padding: 28px 20px;
  text-align: center;
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 24px 72px rgba(0,0,0,0.55), 0 0 40px rgba(0,230,118,0.12);
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.unlock-card.revealed {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.unlock-icon { font-size: 52px; display: block; margin-bottom: 10px; animation: unlockBounce 0.6s cubic-bezier(.34,1.56,.64,1) 0.2s both; }
@keyframes unlockBounce {
  from { transform: scale(0.3) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

.unlock-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 8vw, 36px);
  color: var(--green);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(0,230,118,0.4);
}
.unlock-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 300px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.unlock-subtitle strong { color: var(--green); }

.app-features {
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 22px;
  text-align: left;
}
.app-feature {
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px;
  color: var(--text-dim);
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
}
.feat-check {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: rgba(0,230,118,0.2);
  border: 1px solid rgba(0,230,118,0.5);
  color: var(--green);
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* Google Play badge look */
.play-store-hint {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--ff-heading);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.screen-footer {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--ff-heading);
  letter-spacing: 1px;
}

/* ─── RESPONSIVE ─── */
@media (min-width: 480px) {
  .q-card, .share-card, .result-card, .unlock-card { padding: 36px 30px 30px; }
  .screen { padding: 28px 24px 56px; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deepest); }
::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.25); border-radius: 4px; }
