/* ═══ Streak dots under date ═══ */
.streak-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 2px;
}
.streak-dots .sd {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.streak-dots .sd.sd-fire svg {
  filter: drop-shadow(0 0 3px rgba(239,68,68,.5));
}
.streak-dots .sd.sd-empty svg {
  opacity: 0.35;
}

/* ═══ Streak fullscreen celebration ═══ */
.streak-celebration {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: stCelebFadeIn .4s ease;
  cursor: pointer;
}
.streak-celeb-content {
  text-align: center;
  animation: stCelebPop .5s cubic-bezier(.34,1.56,.64,1) .1s both;
}
.streak-celeb-emoji {
  font-size: 72px;
  margin-bottom: 16px;
  animation: stCelebBounce 1s ease-in-out infinite alternate;
}
.streak-celeb-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.streak-celeb-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  line-height: 1.5;
}
.streak-celeb-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.streak-celeb-dots .scd {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.streak-celeb-dots .scd.scd-fire {
  animation: stCelebDotPop .4s ease both;
}
.streak-celeb-dots .scd.scd-fire svg {
  filter: drop-shadow(0 0 8px rgba(239,68,68,.6));
}
.streak-celeb-dots .scd.scd-empty svg {
  opacity: .3;
}
.streak-celeb-dots .scd:nth-child(1) { animation-delay: .2s; }
.streak-celeb-dots .scd:nth-child(2) { animation-delay: .35s; }
.streak-celeb-dots .scd:nth-child(3) { animation-delay: .5s; }
.streak-celeb-dots .scd:nth-child(4) { animation-delay: .65s; }
.streak-celeb-dots .scd:nth-child(5) { animation-delay: .8s; }
.streak-celeb-dots .scd:nth-child(6) { animation-delay: .95s; }
.streak-celeb-dots .scd:nth-child(7) { animation-delay: 1.1s; }
.streak-celeb-tap {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
@keyframes stCelebFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes stCelebPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes stCelebBounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.05); }
}
@keyframes stCelebDotPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
