/* ════ STORIES ════ */
.story-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.story-card:active { transform: scale(0.97); }
.story-card:hover  { box-shadow: 0 6px 22px rgba(0,0,0,0.12); transform: translateY(-2px); }
.story-card.story-locked {
  opacity: 0.5;
  cursor: default;
  filter: grayscale(0.5);
}
.story-card.story-premium-locked {
  cursor: pointer;
  border: 1.5px solid rgba(245,158,11,.4);
  background: rgba(245,158,11,.06);
}
.story-card.story-premium-locked .story-card-emoji {
  filter: grayscale(0.6);
}
.story-card-emoji {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
}
.story-card-body { flex: 1; }
.story-card-title {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 2px;
}
.story-card-heb {
  font-size: 13px;
  color: var(--text-muted);
  direction: rtl;
  margin-bottom: 6px;
}
.story-card-stars {
  font-size: 18px;
  letter-spacing: 2px;
}

/* Story play arena */
.story-world {
  font-size: 52px;
  text-align: center;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
  animation: popIn 0.4s var(--spring) both;
}
.story-speaker {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}
.story-bubble {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  max-width: 420px;
  margin: 0 auto 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  position: relative;
}
.story-bubble::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 0;
  border-bottom-color: var(--border);
}
.story-textEN {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: clamp(15px, 3.8vw, 19px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.4;
}
.story-textHE {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  direction: rtl;
  line-height: 1.4;
}
.story-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.story-choice {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--surface);
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: clamp(13px, 3.2vw, 15px);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s var(--spring);
  line-height: 1.4;
}
.story-choice:hover:not(:disabled) {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}
.story-choice:disabled { opacity: 0.6; cursor: default; transform: none; }
.story-choice.story-choice-correct {
  border-color: #4ade80;
  background: #dcfce7;
  color: #16a34a;
}
.story-choice.story-choice-wrong {
  border-color: #f87171;
  background: #fee2e2;
  color: #dc2626;
  animation: shake 0.4s ease;
}

