.vc-word {
  padding: 8px 16px;
  background: white;
  border: 2px solid #3b82f6;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  user-select: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.vc-word:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.vc-word.vc-correct {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
  cursor: default;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.vc-word-error {
  animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
  border-color: #ef4444 !important;
  background: #fee2e2 !important;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

#vc-start-btn {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

#vc-start-btn:hover {
  background-color: #1d4ed8;
}

#vc-start-btn:active {
  transform: scale(0.98);
}
