/* ═══════════════════════════════════════════════════════════════
   Math Kangaroo Practice — Stylesheet
   Palette: pink (#FF69B4, #FFB6C1), lavender (#C8A2C8, #9370DB)
   Target: iPad landscape (primary) + laptop
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --pink-hot:    #FF69B4;
  --pink-light:  #FFB6C1;
  --pink-pale:   #FFF0F8;
  --purple:      #9370DB;
  --purple-light:#C8A2C8;
  --purple-pale: #F0E6FF;
  --gold:        #FFD700;
  --gold-dark:   #FFA500;
  --white:       #FFFFFF;
  --text-dark:   #4A2060;
  --text-mid:    #7A4A90;
  --correct-bg:  #D4EDDA;
  --correct-bdr: #28A745;
  --wrong-bg:    #F8D7DA;
  --wrong-bdr:   #DC3545;
  --shadow:      0 4px 20px rgba(147,112,219,0.25);
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   10px;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--purple-pale) 100%);
  color: var(--text-dark);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* ── PORTRAIT-MODE ROTATE OVERLAY ────────────────────────────── */
#rotate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: white;
}
.rotate-content { padding: 2rem; }
.rotate-kangaroo { font-size: 5rem; margin-bottom: 1rem; animation: bounce 1s ease-in-out infinite; }
.rotate-content h2 { font-family: 'Fredoka One', cursive; font-size: 2rem; margin-bottom: 0.5rem; }
.rotate-content p  { font-size: 1.1rem; opacity: 0.9; }
.rotate-icon { font-size: 3rem; margin-top: 1.5rem; animation: spin 2s linear infinite; }

@media (orientation: portrait) {
  #rotate-overlay { display: flex; }
  #app { display: none; }
}
@media (orientation: landscape) {
  #rotate-overlay { display: none; }
  #app { display: flex; }
}

/* ── APP SHELL ────────────────────────────────────────────────── */
#app {
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

/* ── BACKGROUND DECORATIONS ──────────────────────────────────── */
.bg-decor { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.star-bg { position: absolute; opacity: 0.15; animation: twinkle 3s ease-in-out infinite; }
.star-b1 { top: 15%; right: 8%;  font-size: 1.5rem; animation-delay: 0s; }
.star-b2 { top: 70%; right: 5%;  font-size: 1.2rem; animation-delay: 1s; }
.star-b3 { top: 45%; left:  4%;  font-size: 1rem;   animation-delay: 2s; }

.heart-bg { position: absolute; opacity: 0.12; animation: heartbeat 2.5s ease-in-out infinite; color: var(--pink-hot); }
.heart-b1 { top: 85%; left: 12%; font-size: 1.8rem; animation-delay: 0.5s; }
.heart-b2 { top: 10%; left: 40%; font-size: 1.2rem; animation-delay: 1.5s; }

.rainbow-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  pointer-events: none;
  opacity: 0.45;
}
.rainbow-corner svg { width: 100%; height: 100%; }

/* ── HEADER ──────────────────────────────────────────────────── */
#header {
  position: relative; z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple));
  box-shadow: 0 3px 15px rgba(147,112,219,0.4);
  flex-shrink: 0;
  min-height: 58px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-emoji { font-size: 1.8rem; }
.logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

.header-stats {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.stat-chip {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
}
.stat-label { font-family: 'Nunito', sans-serif; font-size: 0.75rem; font-weight: 600; }
.mute-btn {
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.2s;
  color: white;
}
.mute-btn:hover  { transform: scale(1.1); background: rgba(255,255,255,0.35); }
.mute-btn:active { transform: scale(0.95); }

/* ── MAIN CONTENT ─────────────────────────────────────────────── */
#main-content {
  position: relative; z-index: 1;
  flex: 1;
  overflow: hidden;
}

/* ── SCREENS ─────────────────────────────────────────────────── */
.screen {
  display: none;
  position: absolute;
  inset: 0;
  padding: 1rem 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.screen.active { display: flex; flex-direction: column; }

/* ── KANGAROO SVG ─────────────────────────────────────────────── */
.kangaroo-svg {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kangaroo-svg::before {
  content: "🦘";
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: 1;
  display: block;
}

/* ── WELCOME SCREEN ──────────────────────────────────────────── */
.welcome-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  padding: 0.5rem 0;
}
.welcome-left {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.welcome-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--pink-hot);
  text-shadow: 0 2px 8px rgba(255,105,180,0.3);
}
.welcome-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  font-weight: 600;
}
#welcome-mascot .kangaroo-svg { max-width: 200px; }

/* ── PROGRESS BAR ─────────────────────────────────────────────── */
.progress-section { display: flex; flex-direction: column; gap: 0.4rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
}
.progress-track {
  position: relative;
  background: rgba(200,162,200,0.3);
  border-radius: 20px;
  height: 22px;
  overflow: visible;
  border: 2px solid var(--purple-light);
}
.progress-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--pink-hot), var(--gold));
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 0;
}
.progress-kangaroo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  left: calc(var(--progress, 0%) - 10px);
  transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
  z-index: 2;
}
.progress-milestones {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--purple-light);
  font-weight: 600;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple));
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,105,180,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  align-self: flex-start;
}
.btn-primary:hover  { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 24px rgba(255,105,180,0.5); }
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-emoji { font-size: 1.2rem; }

/* ── DONE TODAY SCREEN ───────────────────────────────────────── */
.done-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.done-mascot { flex: 0 0 auto; width: 200px; display: flex; align-items: center; justify-content: center; }
.done-content { flex: 1; display: flex; flex-direction: column; gap: 0.8rem; }
.done-result  { font-size: 4rem; text-align: center; animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.done-streak-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, rgba(255,105,180,0.15), rgba(147,112,219,0.15));
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}
.streak-number {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--gold-dark);
}
.comeback-message {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── QUESTION SCREEN ─────────────────────────────────────────── */
.question-layout {
  display: flex;
  gap: 1.5rem;
  height: 100%;
  align-items: stretch;
}
.question-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}
.mascot-panel {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.question-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.q-progress {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--purple);
  background: rgba(147,112,219,0.12);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
}
.q-topic {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  background: rgba(255,105,180,0.12);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  border: 1px solid var(--pink-light);
}
.q-timer {
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-left: auto;
}

.question-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--pink-light);
}
.question-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-dark);
  white-space: pre-wrap;
}

/* ── READ ALOUD BUTTON ───────────────────────────────────────── */
.read-btn {
  display: block;
  margin: 0.5rem 0 0 auto;
  background: rgba(255,105,180,0.10);
  border: 1.5px solid rgba(255,105,180,0.35);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  color: var(--pink-hot);
  line-height: 1;
}
.read-btn:hover  { background: rgba(255,105,180,0.22); transform: scale(1.08); }
.read-btn:active { transform: scale(0.95); }
.read-btn.speaking {
  background: rgba(255,105,180,0.30);
  animation: readPulse 1.1s ease-in-out infinite;
}
@keyframes readPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,105,180,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(255,105,180,0); }
}

/* ── OPTION BUTTONS ──────────────────────────────────────────── */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.option-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: white;
  border: 2.5px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: transform 0.15s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 56px;
  box-shadow: 0 2px 8px rgba(200,162,200,0.2);
}
.option-btn:hover:not(:disabled) {
  border-color: var(--pink-hot);
  background: #FFF5FA;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,105,180,0.25);
}
.option-btn:active:not(:disabled) { transform: translateY(0); }
.option-btn:disabled { cursor: default; }

.option-letter {
  flex: 0 0 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  flex-shrink: 0;
}
.option-text {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ── ANSWER STATES ───────────────────────────────────────────── */
.option-btn.correct {
  border-color: var(--correct-bdr);
  background: var(--correct-bg);
  animation: correctPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.option-btn.correct .option-letter { background: var(--correct-bdr); }

.option-btn.wrong {
  border-color: var(--wrong-bdr);
  background: var(--wrong-bg);
  animation: shake 0.4s ease;
}
.option-btn.wrong .option-letter { background: var(--wrong-bdr); }

.option-btn.dim { opacity: 0.45; }

/* ── FEEDBACK PANEL ──────────────────────────────────────────── */
.feedback-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--purple-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feedback-panel.hidden { display: none; }

.feedback-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
}
.explanation-box {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
  padding: 0.5rem 0.7rem;
  background: rgba(200,162,200,0.1);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--purple-light);
}
.btn-next {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--purple), var(--pink-hot));
  color: white;
  border: none;
  border-radius: 24px;
  padding: 0.5rem 1.5rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(147,112,219,0.35);
}
.btn-next:hover  { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(147,112,219,0.45); }
.btn-next:active { transform: translateY(0); }

/* ── MASCOT PANEL DECORATIONS ────────────────────────────────── */
.mascot-decorations { position: absolute; inset: 0; pointer-events: none; }
.deco-star, .deco-heart { position: absolute; font-size: 1.2rem; animation: twinkle 2s ease-in-out infinite; }
.deco-1 { top: 5%;  left: 10%; animation-delay: 0s; }
.deco-2 { top: 20%; right: 5%; animation-delay: 0.6s; }
.deco-3 { top: 55%; left: 5%; animation-delay: 1.2s; color: var(--pink-hot); }
.deco-4 { bottom: 20%; right: 8%; animation-delay: 0.9s; }

/* ── COMPLETE SCREEN ─────────────────────────────────────────── */
.complete-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.complete-mascot { flex: 0 0 200px; display: flex; align-items: center; justify-content: center; }
.complete-content { flex: 1; display: flex; flex-direction: column; gap: 0.8rem; }
.complete-trophy-area { font-size: 4.5rem; text-align: center; animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.complete-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--pink-hot);
}
.complete-message { font-size: 1.05rem; font-weight: 600; color: var(--text-mid); }
.complete-stars-earned {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--gold-dark);
}

/* ── CONFETTI ────────────────────────────────────────────────── */
#confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 100;
}
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}

/* ── FLOATING PARTICLES ──────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}
.particle {
  position: absolute;
  animation: floatUp 1.5s ease-out forwards;
  font-size: 1.4rem;
  opacity: 0;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes jump {
  0%, 100% { transform: translateY(0) scaleY(1); }
  40%       { transform: translateY(-20px) scaleY(1.05); }
  60%       { transform: translateY(-18px) scaleY(1.05); }
  80%       { transform: translateY(-3px) scaleY(0.95); }
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25%       { transform: rotate(-8deg) translateY(-4px); }
  75%       { transform: rotate(8deg) translateY(-4px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
@keyframes pop {
  0%   { transform: scale(0.3); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes correctPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes floatUp {
  0%   { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5) rotate(30deg); }
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0.3; }
}
@keyframes trophyBounce {
  0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
  50%  { transform: scale(1.3) rotate(5deg); }
  75%  { transform: scale(0.95) rotate(-3deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,215,0,0.6)); }
  50%       { filter: drop-shadow(0 0 18px rgba(255,215,0,1)); }
}

/* ── CORRECT ANSWER TOAST ────────────────────────────────────── */
#correct-toast {
  position: fixed;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--pink-hot), var(--gold-dark));
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem;
  padding: 0.7rem 2.2rem;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(255,105,180,0.55);
  pointer-events: none;
  z-index: 200;
  display: none;
  white-space: nowrap;
  text-align: center;
}
#correct-toast.show {
  display: block;
  animation: toastPop 1.6s ease forwards;
}
@keyframes toastPop {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  18%  { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  28%  { transform: translate(-50%, -50%) scale(1); }
  65%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
}

/* ── NO ANIMATION MODE (during practice questions) ───────────── */
.no-anim .bg-decor *  { animation-play-state: paused !important; }
.no-anim .kangaroo-svg { animation: none !important; }
.no-anim .option-btn   { animation: none !important; }
.no-anim .feedback-panel { animation: none !important; }

/* ── KANGAROO STATE CLASSES ──────────────────────────────────── */
.bounce { animation: bounce 1.8s ease-in-out infinite; }
.wave   { animation: wave   1.5s ease-in-out infinite; }
.jump   { animation: jump   1.0s ease-in-out 3; }
.idle   { animation: bounce 3.0s ease-in-out infinite; }

/* Kangaroo reactions */
.roo-happy  { animation: jump  0.8s ease-in-out; }
.roo-sad    { animation: shake 0.5s ease; }
.roo-cheer  { animation: bounce 0.5s ease-in-out 4; }

/* ── RESPONSIVE FINE-TUNING ──────────────────────────────────── */
/* Small landscape screens (iPhone) */
@media (max-height: 450px) {
  #header { min-height: 48px; padding: 0.3rem 1rem; }
  .logo-text { font-size: 1.2rem; }
  .screen { padding: 0.5rem 1rem; }
  .question-text { font-size: 0.95rem; }
  .option-btn { min-height: 44px; padding: 0.5rem 0.8rem; }
  .welcome-left { width: 140px; }
}
/* Large screens (desktop) */
@media (min-width: 1200px) {
  .question-text  { font-size: 1.25rem; }
  .option-btn     { min-height: 64px; padding: 1rem 1.2rem; }
  .option-text    { font-size: 1.05rem; }
  .mascot-panel   { flex: 0 0 220px; }
  .welcome-left   { width: 260px; }
}
/* Medium landscape (iPad) */
@media (min-width: 768px) and (max-width: 1199px) {
  .question-text { font-size: 1.1rem; }
  .option-btn    { min-height: 58px; }
}
