/* ═══════════════════════════════════════
   PHASE 1 — WORD OF THE DAY
═══════════════════════════════════════ */
.wotd-card {
  margin: 0 16px 16px;
  background: linear-gradient(135deg, #4936e8 0%, #9b6ff8 100%);
  border-radius: 22px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(73, 54, 232, 0.32);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.wotd-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  border-radius: inherit;
  pointer-events: none;
}
.wotd-card:active { transform: scale(0.97); }
.wotd-new-badge {
  position: absolute;
  top: 10px;
  left: 14px;
  background: rgba(255,255,255,0.22);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.wotd-emoji {
  font-size: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.wotd-body { flex: 1; min-width: 0; }
.wotd-label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.wotd-word {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.wotd-heb {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  direction: rtl;
  margin-top: 3px;
}
.wotd-xp {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}
.wotd-speak-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.wotd-speak-btn:active {
  background: rgba(255,255,255,0.36);
  transform: scale(0.88);
}
.wotd-speak-btn svg { width: 16px; height: 16px; }

