/* ═══════════════════════════════════════════════
   CHARIS27 — Style Sheet
   Edit the :root block to change the whole palette.
   ═══════════════════════════════════════════════ */

:root {
  /* Palette */
  --bg:            #1F4D3D;
  --bg-card:       #163B2E;
  --accent:        #FF5C9C;
  --accent-light:  #FF8FBF;
  --correct:       #4DD97A;
  --wrong:         #FF4F4F;
  --text:          #FFFFFF;
  --text-muted:    #A8C9BE;

  /* Sizing */
  --card-max:      880px;
  --card-radius:   24px;
  --img-height:    360px;
}

/* ── Reset & base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Caveat', cursive;
}

/* ── Screen system ────────────────────────────── */
.screen {
  display: none;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}
.screen.active { display: flex; }

/* ── Ghost "27" — SVG so text-anchor="middle" gives true visual centering
   regardless of the font's glyph side bearings ──────────────────────── */
.ghost27 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
  overflow: visible;
  z-index: 0;
}
.ghost27 text {
  font-family: 'Caveat', cursive;
  font-size: 1100px;
  font-weight: 800;
  fill: var(--accent);
  opacity: 0.12;
}

/* On the question screen, higher opacity so it shows behind the dark card. */
#screen-question .ghost27 text {
  opacity: 0.55;
}

/* ── Shared primary button ────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 60px;
  padding: 18px 60px;
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 92, 156, 0.45);
}

/* ══════════════════════════════════════════════
   INTRO SCREEN
   ══════════════════════════════════════════════ */
#screen-intro {
  gap: 20px;
  text-align: center;
}

.intro-title {
  font-family: 'Caveat', cursive;
  font-size: 128px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.intro-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* PLACEHOLDER: welcome message lives here */
.intro-welcome {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--text);
  max-width: 540px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  /* Add your welcome text as a <p class="intro-welcome"> in index.html */
}

/* ══════════════════════════════════════════════
   QUESTION SCREEN
   ══════════════════════════════════════════════ */
#screen-question {
  justify-content: center;
  padding: 16px 24px 48px; /* extra bottom padding clears the keyboard hint */
}

.question-wrap {
  width: 100%;
  max-width: var(--card-max);
  background: rgba(22, 59, 46, 0.82);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

/* On the question screen the card fills the viewport so nothing needs scrolling.
   64px = 16px top padding + 48px bottom padding from #screen-question */
#screen-question .question-wrap {
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

/* Progress counter — now inside .q-header */

/* Image area — flex:1 so it fills whatever space the card has above the question body */
.q-image-wrap {
  flex: 1;
  min-height: 120px;
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.q-img {
  position: absolute;
  display: block;
}
.q-img.hidden { display: none; }

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.img-placeholder span {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.img-placeholder.hidden { display: none; }

/* Question body */
.q-body {
  padding: 18px 28px 22px;
  flex-shrink: 0; /* body never shrinks — image takes the hit */
}

.q-text {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 14px;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.opt-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 11px 16px;
  color: var(--text);
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  line-height: 1.3;
  white-space: pre-line;
  transition: background 0.12s, border-color 0.12s, transform 0.12s;
  position: relative; /* needed for team badge absolute positioning */
}
.opt-btn:hover {
  background: rgba(255, 92, 156, 0.18);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   END SCREEN
   ══════════════════════════════════════════════ */
#screen-end {
  gap: 24px;
  text-align: center;
}

.end-title {
  font-family: 'Caveat', cursive;
  font-size: 96px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* PLACEHOLDER: closing message lives here */
.end-message {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  /* Add your closing message as a <p class="end-message"> in index.html */
}

/* ══════════════════════════════════════════════
   PHASE 2 — FEEDBACK, SCORING, NEXT BUTTON
   ══════════════════════════════════════════════ */

/* Score counter — floating top-right of question screen */
.score-counter {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  z-index: 10;
}

/* Option button answer states */
.opt-btn.correct {
  background: rgba(77, 217, 122, 0.2);
  border-color: var(--correct);
  color: var(--correct);
  transform: none;
}
.opt-btn.wrong {
  background: rgba(255, 79, 79, 0.2);
  border-color: var(--wrong);
  color: var(--wrong);
  transform: none;
}
.opt-btn:disabled {
  cursor: default;
  pointer-events: none;
}
/* Locked-but-neutral buttons don't glow on hover */
.opt-btn.disabled:not(.correct):not(.wrong) {
  opacity: 0.5;
}

/* Correct answer: pulse */
@keyframes pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* Wrong answer: shake */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}
.opt-btn.anim-correct { animation: pulse 0.4s ease forwards; }
.opt-btn.anim-wrong   { animation: shake 0.4s ease forwards; }

/* Context string — always in layout (holds its space) so the image height never jumps */
.q-context {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 14px;
  min-height: 1.5em;   /* always reserves one line of space */
  opacity: 0;
  transition: opacity 0.5s ease;
}
.q-context.visible { opacity: 1; }
/* .hidden keeps the element invisible but still in layout — no display:none */
.q-context.hidden  { opacity: 0; pointer-events: none; }

/* Next button — always in layout; opacity-hidden until answer is given */
.btn-next {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 12px 0;
  color: var(--accent);
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s, opacity 0.3s;
}
.btn-next:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 156, 0.35);
}
/* hidden = invisible but still holds its layout space */
.btn-next.hidden { opacity: 0; pointer-events: none; cursor: default; }

/* End screen score */
.end-score {
  font-family: 'Caveat', cursive;
  font-size: 100px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.end-tier {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   PHASE 4 — POLISH
   ══════════════════════════════════════════════ */

/* ── Screen fade-in on activate ───────────────── */
.screen.active {
  animation: screenFadeIn 0.4s ease forwards;
}
@keyframes screenFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Question card slide-in on new question ───── */
.question-wrap.anim-in {
  animation: cardSlideIn 0.32s ease forwards;
}
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Option button — tactile hover ───────────── */
.opt-btn:not(:disabled):hover {
  background: rgba(255, 92, 156, 0.18);
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 92, 156, 0.2);
}
.opt-btn:not(:disabled):active {
  transform: translateY(0) scale(0.98);
}

/* ── Pulsing start button ─────────────────────── */
.btn-pulse {
  animation: btnGlow 2.2s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 156, 0); }
  50%       { box-shadow: 0 0 0 14px rgba(255, 92, 156, 0); transform: translateY(-3px); }
}

/* ── Decorative elements ──────────────────────── */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  color: var(--accent);
  z-index: 1;
}

/* Intro screen decos */
.deco-discoball { width: 140px; top: 28px;  left: 56px;  opacity: 0.7; }
.deco-cake      { width: 100px; bottom: 36px; right: 72px; opacity: 0.65; }
.deco-spark-1   { width: 48px;  top: 56px;   right: 96px;  opacity: 0.65; transform: rotate(15deg); }
.deco-spark-2   { width: 28px;  top: 220px;  left: 96px;   opacity: 0.5;  transform: rotate(-12deg); }
.deco-spark-3   { width: 36px;  bottom: 110px; left: 200px; opacity: 0.55; transform: rotate(28deg); }
.deco-spark-4   { width: 22px;  bottom: 60px;  left: 72px;  opacity: 0.4;  transform: rotate(-5deg); }

/* End screen decos */
.deco-spark-end-1 { width: 52px; top: 44px;    left: 88px;   opacity: 0.6;  transform: rotate(20deg); }
.deco-spark-end-2 { width: 32px; top: 72px;    right: 96px;  opacity: 0.5;  transform: rotate(-18deg); }
.deco-spark-end-3 { width: 44px; bottom: 72px; right: 88px;  opacity: 0.6;  transform: rotate(32deg); }
.deco-spark-end-4 { width: 26px; bottom: 110px; left: 100px; opacity: 0.45; transform: rotate(-22deg); }

/* Question screen decos — 3 alternating sets */
.q-deco { opacity: 0; z-index: 0; transition: opacity 0.35s ease; }

/* Set 0 positions: discoball top-left, sparks bottom-right + mid-right */
.q-deco-0-ball   { width: 58px;  top: 14px;    left: 8px;    transform: rotate(-8deg); }
.q-deco-0-spark-a { width: 30px; bottom: 44px; right: 10px;  transform: rotate(20deg); }
.q-deco-0-spark-b { width: 17px; top: 90px;    right: 14px;  transform: rotate(-15deg); }

/* Set 1 positions: cake bottom-left, sparks top-right + mid-left */
.q-deco-1-cake   { width: 52px;  bottom: 38px; left: 8px;    transform: rotate(-6deg); }
.q-deco-1-spark-a { width: 32px; top: 18px;    right: 10px;  transform: rotate(22deg); }
.q-deco-1-spark-b { width: 19px; top: 100px;   left: 14px;   transform: rotate(12deg); }

/* Set 2 positions: spark top-left, discoball bottom-right, tiny spark bottom-left */
.q-deco-2-spark-a { width: 40px; top: 18px;    left: 10px;   transform: rotate(15deg); }
.q-deco-2-ball   { width: 50px;  bottom: 38px; right: 8px;   transform: rotate(10deg); }
.q-deco-2-spark-b { width: 20px; bottom: 88px; left: 12px;   transform: rotate(-30deg); }

/* Show each set when data-deco matches */
#screen-question[data-deco="0"] .q-deco-0-ball    { opacity: 0.4; }
#screen-question[data-deco="0"] .q-deco-0-spark-a { opacity: 0.45; }
#screen-question[data-deco="0"] .q-deco-0-spark-b { opacity: 0.3; }

#screen-question[data-deco="1"] .q-deco-1-cake    { opacity: 0.38; }
#screen-question[data-deco="1"] .q-deco-1-spark-a { opacity: 0.45; }
#screen-question[data-deco="1"] .q-deco-1-spark-b { opacity: 0.28; }

#screen-question[data-deco="2"] .q-deco-2-spark-a { opacity: 0.45; }
#screen-question[data-deco="2"] .q-deco-2-ball    { opacity: 0.38; }
#screen-question[data-deco="2"] .q-deco-2-spark-b { opacity: 0.3; }

/* ── Intro tagline ────────────────────────────── */
.intro-tagline {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  margin-top: -8px;
}

/* ── End score pop-in ─────────────────────────── */
.end-score.anim-in {
  animation: scorePopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes scorePopIn {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Mute toggle ──────────────────────────────── */
.btn-mute {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, opacity 0.15s;
  line-height: 1;
}
.btn-mute:hover { background: rgba(255, 255, 255, 0.18); }
.btn-mute.muted { opacity: 0.4; }

/* ══════════════════════════════════════════════
   ADD-ONS: confetti, progress bar, lightbox,
            score history, keyboard hint,
            perfect score easter egg
   ══════════════════════════════════════════════ */

/* ── Confetti canvas ──────────────────────────── */
#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  display: none;
}

/* ── Progress bar ─────────────────────────────── */
.q-header {
  padding: 20px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.q-counter {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}
.progress-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
#progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.45s ease;
}

/* ── Score history on intro ───────────────────── */
.score-history {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  min-height: 26px;
  opacity: 0.8;
}

/* ── Keyboard hint on question screen ────────── */
.keyboard-hint {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}
.keyboard-hint kbd {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Caveat', cursive;
  font-size: 15px;
}

/* ── Photo lightbox ───────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox.hidden { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.lightbox-img {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  animation: lightboxIn 0.25s ease forwards;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

/* ── q-img clickable when loaded ─────────────── */
.q-img.zoomable {
  cursor: zoom-in;
  transition: opacity 0.15s;
}
.q-img.zoomable:hover { opacity: 0.9; }

/* ── Perfect score easter egg ─────────────────── */
#screen-end.perfect .end-title {
  color: #FFD700;
}
#screen-end.perfect .end-score {
  color: #FFD700;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

/* ── Emoji rain ───────────────────────────────── */
@keyframes emoji-float {
  0%   { transform: translateY(0)    scale(1);   opacity: 1; }
  75%  {                                          opacity: 1; }
  100% { transform: translateY(88vh) scale(0.8); opacity: 0; }
}

/* ── Correct answer animations ─────────────────── */

/* +1 / −1 score pop */
@keyframes score-pop {
  0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  20%  { transform: translate(-50%, calc(-50% - 12px)) scale(1.2); opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translate(-50%, calc(-50% - 50px)) scale(1); opacity: 0; }
}

/* Wrong-answer card shake */
@keyframes q-shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-9px) rotate(-0.4deg); }
  30%       { transform: translateX(9px)  rotate(0.4deg); }
  50%       { transform: translateX(-6px); }
  70%       { transform: translateX(6px); }
  85%       { transform: translateX(-3px); }
}
.q-shake { animation: q-shake 0.44s ease; }

/* Shockwave expanding ring */
@keyframes shockwave-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── After-question image — overlays before-image in same slot ── */
.q-img-after {
  position: absolute;
  display: block;
  cursor: zoom-in;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.q-img-after.revealed {
  opacity: 1;
  pointer-events: auto;
}
.q-img-after.revealed:hover { opacity: 0.92; }

/* ══════════════════════════════════════════════
   MULTIPLAYER — LOBBY
   ══════════════════════════════════════════════ */
.lobby-card {
  width: 100%;
  max-width: 480px;
  background: rgba(22, 59, 46, 0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.lobby-title {
  font-family: 'Caveat', cursive;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin: 0;
}
.lobby-section { display: flex; flex-direction: column; gap: 10px; }
.lobby-label {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
}
.lobby-btn-group { display: flex; gap: 8px; }
.lobby-choice {
  flex: 1;
  padding: 10px 0;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.lobby-choice:hover  { border-color: var(--accent); background: rgba(255,92,156,0.12); }
.lobby-choice.active { border-color: var(--accent); background: rgba(255,92,156,0.22); color: var(--accent); }

.lobby-team-input {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lobby-team-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lobby-team-field {
  flex: 1;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.15s;
}
.lobby-team-field:focus { border-color: var(--accent); }

/* Hard mode toggle */
.lobby-hardmode { flex-direction: row; align-items: center; }
.lobby-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}
.lobby-toggle-wrap input[type="checkbox"] { display: none; }
.lobby-toggle-track {
  width: 46px;
  height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 13px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}
.lobby-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.2s, background 0.2s;
}
.lobby-toggle-wrap input:checked ~ .lobby-toggle-track { background: var(--wrong); }
.lobby-toggle-wrap input:checked ~ .lobby-toggle-track::after {
  transform: translateX(20px);
  background: #fff;
}
.lobby-toggle-text { display: flex; flex-direction: column; gap: 2px; }
.lobby-toggle-text strong { font-family: 'Caveat', cursive; font-size: 20px; color: var(--text); }
.lobby-toggle-text small  { font-size: 12px; color: var(--text-muted); }

.lobby-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.lobby-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Caveat', cursive;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.15s;
}
.lobby-back:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   MULTIPLAYER — TIMER
   ══════════════════════════════════════════════ */
.mp-timer {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  font-weight: 800;
  color: var(--correct);
  min-width: 44px;
  text-align: right;
  transition: color 0.4s;
  line-height: 1;
}
.mp-timer.warning { color: #FFD700; }
.mp-timer.danger  { color: var(--wrong); }

@keyframes pulse-timer {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
.mp-timer.danger { animation: pulse-timer 0.6s ease-in-out infinite; }

/* ══════════════════════════════════════════════
   MULTIPLAYER — TEAM BUZZ-IN BAR
   ══════════════════════════════════════════════ */
.q-mp-bar {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 12px 16px 14px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mp-team-btn {
  flex: 1;
  padding: 11px 6px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-family: 'Caveat', cursive;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-team-btn:not(.locked):not(.answered):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.mp-team-btn.active {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.mp-team-btn.locked {
  opacity: 0.55;
  cursor: default;
  font-size: 14px;
}
/* After reveal */
.mp-team-btn.answered-correct {
  opacity: 1 !important;
  border-color: var(--correct) !important;
  background: rgba(77,217,122,0.18) !important;
  color: var(--correct) !important;
  cursor: default;
}
.mp-team-btn.answered-wrong {
  opacity: 1 !important;
  border-color: var(--wrong) !important;
  background: rgba(255,79,79,0.18) !important;
  color: var(--wrong) !important;
  cursor: default;
}
.mp-team-btn.no-answer {
  opacity: 0.4 !important;
  cursor: default;
}

/* ── MP team answer badges — corner chips on revealed options ──── */
.mp-team-badge {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-family: 'Caveat', cursive;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  /* white ring separates the chip from both green-correct and red-wrong bg */
  box-shadow: 0 0 0 2px rgba(255,255,255,0.65), 0 2px 6px rgba(0,0,0,0.45);
  line-height: 1;
}
.mp-badge-tl { top: 4px;    left: 4px;  }
.mp-badge-tr { top: 4px;    right: 4px; }
.mp-badge-bl { bottom: 4px; left: 4px;  }
.mp-badge-br { bottom: 4px; right: 4px; }

/* ══════════════════════════════════════════════
   MULTIPLAYER — SCOREBOARD SCREEN
   ══════════════════════════════════════════════ */
#screen-scoreboard { gap: 20px; }

.scoreboard-title {
  font-family: 'Caveat', cursive;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
  margin: 0;
}
.scoreboard-list {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.scoreboard-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(22,59,46,0.85);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 18px;
  transition: transform 0.3s ease;
}
.scoreboard-row.rank-1 { border-color: #FFD700; }
.scoreboard-rank  { font-family: 'Caveat', cursive; font-size: 28px; min-width: 36px; text-align: center; }
.scoreboard-name  { font-family: 'Caveat', cursive; font-size: 24px; font-weight: 700; flex: 1; }
.scoreboard-stats { font-size: 12px; color: var(--text-muted); display: flex; gap: 8px; flex-shrink: 0; }
.scoreboard-pts   { font-family: 'Caveat', cursive; font-size: 30px; font-weight: 800; min-width: 40px; text-align: right; }
.scoreboard-delta {
  font-family: 'Caveat', cursive;
  font-size: 16px;
  font-weight: 700;
  min-width: 36px;
  text-align: center;
}
.scoreboard-delta.up   { color: var(--correct); }
.scoreboard-delta.down { color: var(--wrong); }
.scoreboard-delta.same { color: var(--text-muted); }

/* ══════════════════════════════════════════════
   MULTIPLAYER — FINAL RESULTS (END SCREEN)
   ══════════════════════════════════════════════ */
.mp-final-list {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.mp-final-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(22,59,46,0.85);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 20px;
}
.mp-final-row.rank-1 { border-color: #FFD700; box-shadow: 0 0 24px rgba(255,215,0,0.2); }
.mp-final-rank { font-family: 'Caveat', cursive; font-size: 34px; min-width: 42px; text-align: center; }
.mp-final-name { font-family: 'Caveat', cursive; font-size: 26px; font-weight: 700; flex: 1; }
.mp-final-pts  { font-family: 'Caveat', cursive; font-size: 34px; font-weight: 800; }
.mp-final-stats {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  margin-top: 3px;
}

/* ══════════════════════════════════════════════
   SECTION CARDS
   ══════════════════════════════════════════════ */
#screen-section { gap: 0; }

.section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding: 0 24px;
}
.section-emoji {
  font-size: 80px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.section-title {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin: 0;
}
.section-sub {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════
   MULTIPLAYER — NO-TIMER REVEAL BUTTON
   ══════════════════════════════════════════════ */
.mp-reveal-btn {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-family: 'Caveat', cursive;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.2;
  white-space: nowrap;
}
.mp-reveal-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,92,156,0.12);
}

/* ══════════════════════════════════════════════
   RESULTS SCREEN
   ══════════════════════════════════════════════ */
#screen-results {
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
  align-items: stretch;
}

.results-wrapper {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 36px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.results-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.results-title {
  font-family: 'Caveat', cursive;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

.results-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--text-muted);
  margin: 0;
}

.results-mp-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 2px;
}
.results-rank-chip {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
}

/* Question card grid */
.results-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-card {
  background: rgba(22, 59, 46, 0.88);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.result-card.card-correct { border-color: rgba(77,217,122,0.45); }
.result-card.card-wrong   { border-color: rgba(255,79,79,0.35); }

.result-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.result-body {
  padding: 10px 13px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.result-q-num {
  font-family: 'Caveat', cursive;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
}

.result-question {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.result-ans {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  font-weight: 700;
}
.result-ans.correct { color: var(--correct); }
.result-ans.wrong   { color: var(--wrong); }

.result-team-answers {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 3px;
}
.result-team-row {
  font-family: 'Caveat', cursive;
  font-size: 14px;
  font-weight: 600;
}

/* Footer: print + back buttons */
.results-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}

/* ── End screen: two-button layout ─────────────── */
.end-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.end-export-row {
  display: flex;
  gap: 12px;
}

/* ══════════════════════════════════════════════
   FUN RESULTS SCREEN
   ══════════════════════════════════════════════ */
#screen-results-fun {
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
  align-items: stretch;
}

.fun-wrapper {
  width: 100%;
  padding: 28px 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Polaroid photo collage */
.fun-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 20px 16px;
  padding: 12px 8px;
  width: 100%;
  max-width: 860px;
}

.fun-photo {
  width: 148px;
  flex-shrink: 0;
  background: #fff;
  padding: 7px 7px 32px;  /* polaroid: more space at bottom */
  border-radius: 3px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.3);
  transform: rotate(var(--rot, 0deg));
  position: relative;
  transition: transform 0.2s;
}
.fun-photo:hover { transform: rotate(0deg) scale(1.06); z-index: 2; }

.fun-photo-img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}

/* ✅/❌ stamp at bottom of each polaroid */
.fun-photo::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
  line-height: 1;
}
.fun-photo.correct::after { content: '✅'; }
.fun-photo.wrong::after   { content: '❌'; }

/* Coloured top strip */
.fun-photo.correct { border-top: 4px solid #4DD97A; }
.fun-photo.wrong   { border-top: 4px solid #FF4F4F; }

/* Stats box */
.fun-stats {
  background: rgba(22,59,46,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 22px 36px 20px;
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.fun-stat-big {
  font-family: 'Caveat', cursive;
  font-size: 88px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.fun-stat-slash { color: var(--text-muted); font-size: 60px; }

.fun-solo-detail {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
}
.fun-solo-correct { color: var(--correct); }
.fun-solo-wrong   { color: var(--wrong); }

/* MP stats rows */
.fun-mp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: 'Caveat', cursive;
}
.fun-mp-row:last-child { border-bottom: none; }
.fun-mp-medal  { font-size: 22px; min-width: 32px; }
.fun-mp-name   { flex: 1; font-size: 22px; font-weight: 700; text-align: left; }
.fun-mp-pts    { font-size: 26px; font-weight: 800; }
.fun-mp-detail { font-size: 13px; color: var(--text-muted); min-width: 64px; text-align: right; }

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: 60px;
  padding: 14px 40px;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.15s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   BONUS ROUND
   ══════════════════════════════════════════════ */

/* Bonus button on end screen */
.btn-bonus {
  background: linear-gradient(135deg, #b8860b 0%, #f0c040 50%, #b8860b 100%);
  background-size: 200% 200%;
  animation: bonus-shimmer 2.5s ease infinite;
  border: none;
  border-radius: 60px;
  padding: 14px 40px;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a00;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(240,192,64,0.35);
}
.btn-bonus:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(240,192,64,0.5);
}
@keyframes bonus-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Bonus badge on question screen counter */
.bonus-label {
  font-family: 'Caveat', cursive;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #b8860b, #f0c040);
  color: #1a1a00;
  border-radius: 6px;
  padding: 2px 7px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Bonus end screen */
#screen-bonus-end {
  justify-content: center;
  align-items: center;
}
.bonus-end-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding: 0 24px;
}
.bonus-end-star {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(240,192,64,0.6));
}
.bonus-end-title {
  font-family: 'Caveat', cursive;
  font-size: 72px;
  font-weight: 800;
  color: #f0c040;
  margin: 0;
  line-height: 1;
}
.bonus-end-score {
  font-family: 'Caveat', cursive;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.bonus-end-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.bonus-end-team {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
}
.bonus-end-team-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bonus-end-team-name {
  flex: 1;
  text-align: left;
}
.bonus-end-team-pts {
  color: #f0c040;
  font-size: 24px;
}

/* ══════════════════════════════════════════════
   PRINT STYLES  (results screen only)
   ══════════════════════════════════════════════ */
.no-print { /* shown on screen, hidden on print — applied to buttons & ghost */ }

@media print {
  /* Hide UI chrome */
  .no-print,
  .btn-mute,
  #screen-results .ghost27,
  #screen-results-fun .ghost27 { display: none !important; }

  .screen { display: none !important; min-height: unset !important; }
  /* Show whichever results screen is active when print is triggered */
  #screen-results.active,
  #screen-results-fun.active { display: block !important; padding: 0 !important; overflow: visible !important; }

  /* Fun screen: landscape A4 (via beforeprint), 9 photos × 3 rows = 27 */
  .fun-wrapper {
    padding: 0 !important;
    gap: 6px !important;
    min-height: unset !important;
  }
  .fun-collage {
    gap: 6px 8px !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .fun-photo {
    width: 108px !important;
    padding: 5px 5px 22px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35) !important;
  }
  .fun-photo:hover { transform: rotate(var(--rot, 0deg)) !important; }
  .fun-photo-img { height: 160px !important; }
  .fun-stats {
    background: #163B2E !important;
    border-color: rgba(255,255,255,0.15) !important;
    padding: 8px 28px 6px !important;
    max-width: 100% !important;
    width: auto !important;
  }
  .fun-stat-big    { font-size: 52px !important; }
  .fun-solo-detail { font-size: 18px !important; }

  /* ── Keep the quiz's dark-green palette ── */
  body, html {
    background: #1F4D3D !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .results-wrapper {
    max-width: 100%;
    padding: 16px 20px 28px;
    gap: 14px;
    background: #1F4D3D;
  }

  .results-title     { color: #FF5C9C !important; font-size: 36px; }
  .results-subtitle  { font-size: 18px; color: #A8C9BE !important; }
  .results-rank-chip { font-size: 16px; }
  .results-mp-summary { gap: 8px 16px; }

  .results-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Cards keep the dark card colour */
  .result-card {
    break-inside: avoid;
    background: #163B2E !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
  }
  .result-card.card-correct { border-color: rgba(77,217,122,0.55) !important; }
  .result-card.card-wrong   { border-color: rgba(255,79,79,0.45) !important; }

  .result-img      { height: 80px !important; }
  .result-q-num    { color: #A8C9BE !important; opacity: 1 !important; }
  .result-question { color: #fff !important; font-size: 13px; }
  .result-team-row { color: #fff !important; font-size: 12px; }

  /* Keep vivid correct/wrong colours — they read well on dark bg */
  .result-ans.correct { color: #4DD97A !important; }
  .result-ans.wrong   { color: #FF5C5C !important; }
}

/* Intro multiplayer button */
.btn-mp {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 60px;
  padding: 14px 40px;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.15s;
}
.btn-mp:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Two MP buttons side by side on intro */
.intro-mp-row {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.intro-mp-row .btn-mp {
  flex: 1;
  padding: 14px 18px;
  font-size: 20px;
}
.btn-mp-wifi {
  border-color: rgba(96,207,255,0.3);
  color: #60CFFF;
}
.btn-mp-wifi:hover { border-color: #60CFFF; color: #60CFFF; }

/* ══════════════════════════════════════════════
   WIFI LOBBY
   ══════════════════════════════════════════════ */
.wifi-lobby-card {
  max-height: 90vh;
  overflow-y: auto;
}

.wifi-join-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  width: 100%;
}
.wifi-join-label {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--muted);
  text-align: center;
}
.wifi-qr {
  border-radius: 12px;
  overflow: hidden;
  background: #1F4D3D;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wifi-qr canvas, .wifi-qr img {
  display: block;
  border-radius: 6px;
}
.wifi-url {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  color: #60CFFF;
  text-align: center;
  word-break: break-all;
  background: rgba(96,207,255,0.08);
  border-radius: 8px;
  padding: 6px 12px;
  width: 100%;
}
.wifi-players-label {
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 4px;
}
.wifi-players-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 32px;
}
.wifi-player-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 6px 12px;
}
.wifi-player-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wifi-player-empty {
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--muted);
  text-align: center;
  padding: 8px 0;
}

/* WiFi answer counter on question screen */
.wifi-answer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
}
.wifi-answer-count {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.wifi-answer-label {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--muted);
}
