/* ═══════════════════════════════════════
   FILL IN THE BLANK
═══════════════════════════════════════ */
.fb-sentence {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 900;
  color: var(--text);
  text-align: center;
  line-height: 1.5;
  margin: 8px 0 6px;
  letter-spacing: 0.01em;
}

.fb-hebrew {
  font-size: clamp(13px, 2.5vw, 16px);
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  direction: rtl;
  margin-bottom: 22px;
}

/* ═══════════════════════════════════════
   MATCH PAIRS
═══════════════════════════════════════ */
.mp-emojis,
.mp-words {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 14px;
}

.mp-btn {
  border: 2.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
}

.mp-btn:active { transform: scale(0.94); }

.mp-emoji-btn {
  font-size: clamp(28px, 7vw, 44px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.mp-word-btn {
  font-size: clamp(11px, 2.8vw, 15px);
  padding: 12px 4px;
  min-height: 48px;
}

.mp-btn.mp-selected {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
  transform: scale(1.07);
}

.mp-btn.mp-matched {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  opacity: 0.65;
  cursor: default;
}

.mp-btn.mp-wrong {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  animation: shake 0.4s var(--ease);
}

/* ═══════════════════════════════════════
   WORD MATCH — English ↔ Hebrew
═══════════════════════════════════════ */
.wm-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.wm-col-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 6px;
}

.wm-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wm-btn {
  border: 2.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  font-family: "Nunito", "Baloo 2", "Noto Sans Hebrew", sans-serif;
  font-size: clamp(12px, 3vw, 15px);
  min-height: 50px;
  padding: 10px 8px;
  width: 100%;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, opacity 0.2s;
  text-align: center;
  line-height: 1.25;
}

.wm-en-btn { letter-spacing: 0.01em; }
.wm-he-btn { direction: rtl; }

.wm-btn:active { transform: scale(0.93); }

.wm-btn.wm-selected {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.14);
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.wm-btn.wm-matched {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  opacity: 0.55;
  cursor: default;
  transform: none;
}

.wm-btn.wm-wrong {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  animation: shake 0.4s var(--ease);
}
