/* ===== pic advanture CSS ===== */

#progressImg{
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}

.picture-hint{
  margin-top: 10px;
  font-weight: 800;
  font-size: 16px;
}

.picture-hint small{
  display: block;
  font-weight: 700;
  opacity: 0.8;
  margin-top: 4px;
}
.word-area{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 18px;
}

.word-letter{
  width: 44px;
  height: 52px;
  border-radius: 12px;
  background: #fef3c7;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #111827;
}
.hebrew-hint{
  margin: 14px auto 6px;
  padding: 10px 16px;
  max-width: 220px;
  background: linear-gradient(135deg, #fde2f3, #fbcfe8);
  border-radius: 18px;
  font-size: 16px;
  font-weight: 800;
  color: #7c2d12;
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  animation: hintPop 0.4s ease;
}
@keyframes hintPop{
  0%{
    transform: scale(0.85);
    opacity: 0;
  }
  100%{
    transform: scale(1);
    opacity: 1;
  }
}
