.image-area {
  text-align: center;
  margin-bottom: 30px;
}

.word-image {
  font-size: 6rem;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}

.hint-text {
  font-size: 1.3rem;
  color: var(--gray-800);
  font-weight: 600;
}

.answer-area {
  display: flex;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.answer-slot {
  width: 70px;
  height: 70px;
  border: 3px dashed var(--gray-300);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  transition: all var(--transition-fast);
}

.answer-slot.filled {
  border-style: solid;
  border-color: var(--primary);
  background: var(--gray-100);
}

.answer-slot.correct {
  border-color: var(--success);
  background: #e8f8eb;
  animation: pulse 0.5s ease;
}

.answer-slot.wrong {
  border-color: var(--danger);
  background: #ffe8e8;
  animation: shake 0.5s ease;
}

.answer-slot .syllable-drag {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.syllable-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.syllable-drag {
  min-width: 65px;
  height: 65px;
  padding: 10px 16px;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: 3px solid;
  cursor: grab;
  user-select: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.syllable-drag:hover {
  transform: scale(1.1);
}

.syllable-drag:active {
  cursor: grabbing;
  transform: scale(0.95);
}

.syllable-drag.dragging {
  opacity: 0.5;
}

.syllable-drag.placed {
  visibility: hidden;
}

.syllable-drag.selected {
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.5);
}

/* Touch dragging styles */
.answer-slot.drag-over {
  border-color: var(--primary);
  border-style: solid;
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.05);
}

.touch-dragging {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Renk sınıfları */
.syllable-a {
  background: #ffe8e8;
  border-color: #ff6b6b;
  color: #c0392b;
}
.syllable-e {
  background: #fff0e0;
  border-color: #ffa94d;
  color: #d35400;
}
.syllable-i {
  background: #fff9e0;
  border-color: #ffe066;
  color: #f39c12;
}
.syllable-ii {
  background: #e8f8eb;
  border-color: #69db7c;
  color: #27ae60;
}
.syllable-o {
  background: #e8f4ff;
  border-color: #74c0fc;
  color: #2980b9;
}
.syllable-oo {
  background: #f0ebff;
  border-color: #b197fc;
  color: #8e44ad;
}
.syllable-u {
  background: #ffe8f2;
  border-color: #f783ac;
  color: #e84393;
}
.syllable-uu {
  background: #ffe0eb;
  border-color: #e64980;
  color: #c0392b;
}

.control-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.progress-text {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 600;
}

/* Feedback Overlay */
.feedback-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.feedback-overlay.show {
  opacity: 1;
  visibility: visible;
}

.feedback-icon {
  font-size: 8rem;
  animation: pop 0.5s ease;
}

.feedback-icon.correct {
  color: var(--success);
}

.feedback-icon.wrong {
  color: var(--danger);
}

/* Responsive */
@media (max-width: 600px) {
  .word-image {
    font-size: 4rem;
  }

  .answer-slot {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }

  .syllable-drag {
    min-width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }

  .control-buttons {
    flex-direction: column;
    align-items: center;
  }
}
