.translation-instructions{
  font-size: 16px;
  margin: 12px 0 6px;
  color: #6b21a8;
  font-weight: 700;
}

.sentence-en{
  background: linear-gradient(135deg, #fde2f3, #fbcfe8);
  border-radius: 18px;
  padding: 14px 12px;
  margin: 10px 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.answers-he{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.answers-he .btn{
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.answers-he .btn:active{
  transform: scale(0.96);
}

.answers-he .btn.correct{
  background: linear-gradient(135deg, #bbf7d0, #86efac);
  color: #065f46;
}

.answers-he .btn.wrong{
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #7f1d1d;
}

@media (max-width: 480px){
  .sentence-en{
    font-size: 17px;
  }

  .answers-he .btn{
    font-size: 17px;
  }
}
.play-sentence-btn{
  position: relative;
  top: -10px;
  margin: 0 auto 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease;
}


.play-sentence-btn:active{
  transform: scale(0.92);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.answer-with-sound{
  display: flex;
  align-items: center;
  gap: 10px;
}

.answer-with-sound .btn{
  flex: 1;
}

.answer-sound-btn{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.answer-sound-btn::before{
  content: "🔊";
}

.answer-sound-btn:active{
  transform: scale(0.9);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.answer-with-sound .btn.correct + .answer-sound-btn{
  background: linear-gradient(135deg, #bbf7d0, #86efac);
}

.answer-with-sound .btn.wrong + .answer-sound-btn{
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}
