:root {
  /* HQ Trivia / social quiz — purple→magenta */
  --bg-top: #7B2CFF;
  --bg-mid: #A12CFF;
  --bg-bot: #E83A8A;
  --purple: #6B21F3;
  --purple-deep: #4C12C4;
  --magenta: #E83A8A;
  --coral: #FF5A6B;
  --lime: #B8F23A;
  --lime-deep: #8BD400;
  --sky: #3DB8FF;
  --orange: #FF8A1F;
  --pink: #FF4FA3;
  --gold: #FFD84A;
  --ink: #1A0B3C;
  --ink-soft: #3D2A6B;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-dim: rgba(255, 255, 255, 0.55);
  --white: #FFFFFF;
  --card-glass: rgba(255, 255, 255, 0.14);
  --grass: #3DDC84; /* soccer accent only */
  --danger: #FF5A8A;
  --ok: #B8F23A;
  --radius: 28px;
  --radius-sm: 20px;
  --radius-pill: 999px;
  --shadow: 0 12px 40px rgba(40, 0, 80, 0.35);
  --shadow-soft: 0 6px 20px rgba(40, 0, 80, 0.22);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: linear-gradient(165deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-bot) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}
a { color: var(--lime); font-weight: 700; text-decoration-thickness: 1px; }
a:hover { color: #d4ff6e; }

/* —— Header —— */
.site-header {
  background: rgba(75, 18, 196, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  padding: 0.7rem 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
  font-size: 0.78rem;
}
.nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* —— Layout —— */
.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.15rem 1rem 3rem;
}

/* —— Speech bubble titles —— */
.speech-bubble {
  display: inline-block;
  background: var(--white);
  color: var(--purple);
  border-radius: 28px 28px 28px 10px;
  padding: 0.85rem 1.25rem 0.95rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  margin: 0 0 0.85rem;
  max-width: 100%;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 0 0 0 6px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 0 rgba(40, 0, 80, 0.04);
}
.speech-bubble h1,
.hero .speech-bubble h1 {
  margin: 0;
  font-size: clamp(1.55rem, 5.5vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--pink);
}
.speech-bubble.alt h1 { color: var(--purple); }
.bubble-sub {
  display: inline-block;
  background: rgba(26, 11, 60, 0.35);
  color: var(--white);
  border-radius: 18px 18px 18px 8px;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  backdrop-filter: blur(6px);
}

/* —— Hero —— */
.hero {
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 0 0.25rem;
  box-shadow: none;
  border: none;
  margin-bottom: 0.75rem;
  position: relative;
}
.hero-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.mascot {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  margin-top: 0.15rem;
}
.mascot svg { width: 100%; height: 100%; display: block; }
.hero .lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
}
.hero > h1:not(.speech-bubble h1) {
  /* fallback if H1 not wrapped — still painted boldly */
  margin: 0 0 0.45rem;
  font-size: clamp(1.85rem, 6vw, 2.5rem);
  letter-spacing: -0.035em;
  color: var(--white);
  font-weight: 900;
  line-height: 1.15;
}

/* —— Mode cards (home) —— */
.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
}
@media (min-width: 560px) {
  .mode-grid { grid-template-columns: repeat(3, 1fr); }
}
.mode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: none;
  border-radius: 26px;
  padding: 1.15rem 1.05rem 1.2rem;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s;
  min-height: 9.25rem;
  position: relative;
  overflow: hidden;
}
.mode-card::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.mode-card:hover, .mode-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(40, 0, 80, 0.35);
  outline: none;
}
.mode-card .mode-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 0.65rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 1;
}
.mode-card .mode-icon svg { width: 1.85rem; height: 1.85rem; }
.mode-card .emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.mode-card h2, .mode-card .mode-title {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.mode-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
  position: relative;
  z-index: 1;
}
.mode-card.card-lime { background: linear-gradient(145deg, #C8F53A 0%, #8BD400 100%); color: #1a3a00; }
.mode-card.card-lime .mode-title, .mode-card.card-lime h2 { color: #163500; }
.mode-card.card-lime p { color: rgba(22, 53, 0, 0.85); }
.mode-card.card-orange { background: linear-gradient(145deg, #FFB347 0%, #FF8A1F 100%); }
.mode-card.card-pink { background: linear-gradient(145deg, #FF7AB8 0%, #FF4FA3 100%); }
.mode-card.card-sky { background: linear-gradient(145deg, #5EC8FF 0%, #2A9DFF 100%); }
.mode-card.card-coral { background: linear-gradient(145deg, #FF7A6E 0%, #FF4D5E 100%); }
.mode-card.card-violet { background: linear-gradient(145deg, #B47AFF 0%, #7B2CFF 100%); }

.hero-footnote {
  margin: 0;
  color: var(--muted-dim);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-footnote a { color: var(--white); font-weight: 800; }

/* —— SEO / FAQ (quieter) —— */
.seo-block {
  background: transparent;
  border-radius: 0;
  padding: 1.5rem 0.15rem 0.5rem;
  box-shadow: none;
  margin-top: 2rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.seo-block h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin: 1.35rem 0 0.35rem;
  letter-spacing: -0.01em;
}
.seo-block h2:first-child { margin-top: 0.75rem; }
.seo-block p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  line-height: 1.55;
}
.seo-block a { color: rgba(255, 255, 255, 0.72); font-weight: 700; }
.seo-block a:hover { color: var(--lime); }
.seo-block code {
  font-size: 0.85em;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
}

/* —— Footer —— */
.site-footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer a { font-weight: 600; color: rgba(255, 255, 255, 0.65); }
.site-footer a:hover { color: var(--lime); }

/* —— Quiz panel —— */
.quiz-panel {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 1.25rem 1.1rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
}
.quiz-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}
.quiz-meta strong { color: var(--gold); font-size: 1.1em; font-weight: 900; }
.quiz-meta .streak-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 138, 31, 0.3);
  color: var(--gold);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
}

/* VS bar */
.vs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0;
}
.vs-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 4.5rem;
}
.vs-face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--sky), var(--purple));
}
.vs-face.opp {
  background: linear-gradient(135deg, var(--orange), var(--pink));
}
.vs-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  opacity: 0.9;
}
.vs-score {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.vs-pill {
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1.15rem;
}
.progress-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--gold));
  width: 0%;
  transition: width .3s ease;
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(184, 242, 58, 0.5);
}

/* Clues (player mode) */
.clue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.clue {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.75rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.clue .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}
.clue .value {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 0.15rem;
}

/* Crest (logo mode) */
.crest-hint {
  width: 132px;
  height: 132px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.15rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
  border: 4px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.12);
  letter-spacing: -0.02em;
}

/* Question prompt */
.q-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.q-bubble {
  display: block;
  background: var(--white);
  color: var(--purple);
  border-radius: 22px 22px 22px 8px;
  padding: 0.85rem 1.1rem;
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-soft);
}

/* Choices */
.choices {
  display: grid;
  gap: 0.7rem;
}
.choice-btn, .btn {
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-radius: 22px;
  padding: 1.05rem 1.15rem;
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background .15s, border-color .15s, transform .1s, box-shadow .15s, color .15s;
  min-height: 3.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.choice-btn:hover:not(:disabled), .btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.26);
  color: var(--white);
}
.choice-btn:active:not(:disabled) { transform: scale(0.985); }
.choice-btn:disabled { cursor: default; opacity: 0.95; }
.choice-btn.correct {
  border-color: transparent;
  background: var(--lime);
  color: #163500;
  box-shadow: 0 0 0 3px rgba(184, 242, 58, 0.45), 0 8px 24px rgba(184, 242, 58, 0.35);
  font-weight: 900;
}
.choice-btn.wrong {
  border-color: transparent;
  background: var(--danger);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 90, 138, 0.4);
  font-weight: 900;
}
.choice-btn.dimmed {
  opacity: 0.45;
}

.btn {
  width: auto;
  text-align: center;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-pill);
}
.btn-primary {
  background: var(--white);
  color: var(--purple);
  border-color: transparent;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover:not(:disabled) {
  background: #f5f0ff;
  color: var(--purple-deep);
  border-color: transparent;
}
.btn-accent {
  background: var(--orange);
  border-color: transparent;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 6px 22px rgba(255, 138, 31, 0.45);
}
.btn-accent:hover:not(:disabled) {
  background: #ff9d3d;
  color: #fff;
  border-color: transparent;
}
.btn-claim {
  background: var(--white);
  color: var(--purple);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1.05rem 2rem;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-claim:hover { background: #f8f4ff; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}
.btn-row .btn { flex: 1 1 auto; min-width: 8rem; }

.feedback {
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  font-weight: 800;
  display: none;
  font-size: 0.98rem;
}
.feedback.show { display: block; }
.feedback.ok {
  background: rgba(184, 242, 58, 0.25);
  color: var(--lime);
  border: 1px solid rgba(184, 242, 58, 0.45);
}
.feedback.bad {
  background: rgba(255, 90, 138, 0.22);
  color: #ffb3c8;
  border: 1px solid rgba(255, 90, 138, 0.4);
}

/* —— NICE / streak overlay —— */
.nice-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transform: scale(0.6) rotate(-8deg);
  transition: opacity .2s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.nice-overlay.show {
  opacity: 1;
  transform: scale(1) rotate(-6deg);
}
.nice-sticker {
  font-size: clamp(2.8rem, 12vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--pink),
    -2px 2px 0 var(--sky),
    0 8px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.03em;
  line-height: 1;
}
.nice-sub {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nice-sub .pts {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  color: var(--lime);
}

/* —— Results: You Won —— */
.result-screen {
  text-align: center;
  padding: 0.5rem 0.25rem 0.75rem;
}
.result-screen.score-poster,
.score-poster {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 216, 74, 0.35), transparent 55%),
    linear-gradient(165deg, rgba(255, 138, 31, 0.35) 0%, rgba(123, 44, 255, 0.2) 50%, rgba(232, 58, 138, 0.25) 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;
  padding: 1.75rem 1.15rem 1.6rem;
  margin: -0.15rem;
  position: relative;
  overflow: hidden;
}
.you-won-title {
  margin: 0 0 0.25rem;
  font-size: clamp(2.2rem, 10vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  line-height: 1.05;
}
.winners-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}
.winners-pill .crown { font-size: 1.1rem; }
.coin-row {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin: 0.75rem 0 1.25rem;
  flex-wrap: wrap;
}
.coin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}
.coin-icon {
  font-size: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}
.result-screen h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.result-screen .score-big {
  font-size: clamp(3.2rem, 13vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin: 0.1rem 0 0.3rem;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 216, 74, 0.45);
}
.result-screen .score-label {
  color: var(--muted);
  margin: 0 0 1.15rem;
  font-size: 1rem;
  font-weight: 700;
}
.result-screen .btn-row {
  justify-content: center;
  margin-top: 0.25rem;
}
.result-screen .btn-accent {
  font-size: 1.08rem;
  padding: 1.05rem 1.6rem;
  min-width: 10rem;
  border-radius: var(--radius-pill);
}
.result-screen a { color: rgba(255, 255, 255, 0.7); font-weight: 700; }
.result-screen a:hover { color: var(--lime); }

/* —— Unlock card —— */
.unlock-card {
  background: linear-gradient(165deg, #FF5A8A 0%, #7B2CFF 100%);
  border-radius: 28px;
  padding: 1.35rem 1.15rem 1.25rem;
  margin: 0 0 1rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  position: relative;
}
.unlock-badge {
  display: inline-block;
  background: var(--white);
  color: var(--purple);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  transform: rotate(-6deg);
  margin-bottom: 0.65rem;
}
.unlock-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
}
.unlock-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
}
.unlock-trophy {
  font-size: 3rem;
  margin: 0.25rem 0 0.5rem;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.hidden { display: none !important; }
.share-status {
  font-size: 0.88rem;
  color: var(--lime);
  margin-top: 0.65rem;
  min-height: 1.2em;
  font-weight: 700;
}

@media (max-width: 519px) {
  .nav { width: 100%; justify-content: flex-start; }
  .mode-card { min-height: 8.5rem; padding: 1.05rem 0.95rem; }
  .choice-btn { padding: 1.05rem 1.05rem; font-size: 1.02rem; }
  .mode-grid { gap: 0.7rem; }
}
