/* ═══════════════════════════════════════
   PHASE 1 — ROUND PROGRESS DOTS
═══════════════════════════════════════ */
.round-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.rdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.25s, transform 0.25s;
}
.rdot.done {
  background: #fcd34d;
  border-color: #f59e0b;
  transform: scale(1.15);
}

/* ═══════════════════════════════════════
   PHASE 1 — ROUND SUMMARY OVERLAY
═══════════════════════════════════════ */
#roundSummary {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(10, 10, 30, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#roundSummary.open {
  display: flex;
}
.rs-card {
  background: var(--surface);
  border-radius: 32px;
  padding: 36px 28px 28px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: rsCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes rsCardIn {
  from { transform: translateY(60px) scale(0.88); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.rs-emoji-row {
  font-size: 44px;
  margin-bottom: 10px;
  line-height: 1;
}
.rs-title {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
}
.rs-score-big {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.rs-score-denom {
  font-size: 28px;
  color: var(--text-soft);
  font-weight: 600;
}
.rs-stars-earned {
  font-size: 16px;
  font-weight: 700;
  color: #d97706;
  margin: 10px 0 6px;
}
.rs-best-line {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.rs-btns {
  display: flex;
  gap: 12px;
}
.rs-btn-back {
  flex: 1;
  background: var(--surface2);
  color: var(--text-mid);
  border: none;
  border-radius: 16px;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.rs-btn-again {
  flex: 1;
  background: linear-gradient(135deg, #4936e8, #9b6ff8);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.rs-btn-again:active { opacity: 0.85; }
.rs-btn-back:active  { opacity: 0.75; }

