[v-cloak] { display: none; }

.word-chip {
  transition: all 0.2s;
  touch-action: none;
  user-select: none;
}

.word-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.drop-zone {
  min-height: 50px;
  transition: background-color 0.3s;
}

.drop-zone.active {
  background-color: rgba(255, 215, 0, 0.1);
}

.exercise-container {
  max-width: 600px;
}

.option-correct {
  background-color: #4ade80 !important;
  color: white !important;
}

.option-incorrect {
  background-color: #f87171 !important;
  color: white !important;
}

.bounce {
  animation: bounce 0.5s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.character {
  transition: all 0.3s ease;
  width: 187.5px;
  height: 187.5px;
  object-fit: contain;
}

.character.happy {
  transform: scale(1.1);
}

.speech-bubble {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.speech-bubble:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  border-left: 0;
  margin-left: -10px;
  margin-bottom: -20px;
}

.ghost {
  position: fixed;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

@media (max-width: 640px) {
  .word-chip {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
  .drop-zone {
    min-height: 60px;
  }
}

footer {
  background-color: black;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
}