.word-guess-layout{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hangman-area{
  width: 180px;
  height: 180px;
  background: #fde2f3;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hangman-area img{
  max-width: 100%;
  max-height: 100%;
}

.word-area{
  display: flex;
  gap: clamp(4px, 1vw, 8px);
  margin: 10px 0;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
}


.word-area.lose{
  flex-direction: row;
  align-items: center;
}
.key-btn.correct{
  background: #86efac;
  color: #065f46;
}



.word-letter{
  flex: 0 1 auto;
  width: auto;
  max-width: 42px;
  min-width: 22px;
  height: clamp(34px, 10vw, 52px);
  border-radius: 12px;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 6vw, 28px);
  font-weight: 800;
}








.btn-pink{
  background: #f9a8d4;
  color: #111827;
}

.lose-btn{
  width: 140px;
  padding: 12px 0;
  border-radius: 18px;
  font-size: 16px;
}

.lose-box{
  margin-top: 12px;
  padding: 12px 12px;
  background: #fff1f7;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 220px;
  box-sizing: border-box;
}

.lose-text{
  font-size: 16px;
  font-weight: 800;
  color: #be185d;
  text-align: center;
}



@media (max-width: 420px){
  .word-area{
    gap: 6px;
    max-width: 100%;
    padding: 0 8px;
    justify-content: center;
    box-sizing: border-box;
  }

  .word-letter{
    width: 31px;
    height: 40px;
    font-size: 22px;
    border-radius: 10px;
    flex-shrink: 0;
  }
}
