* {
  font-family: 'Comfortaa', sans-serif;
  letter-spacing: 0.2px;
  
}

input::placeholder {
  transition: opacity 0.2s ease;
}

input:focus::placeholder {
  opacity: 0.5;
}

/* Modern minimal scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #cbd5e1; /* soft gray */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #94a3b8;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont;
}

.word-card {
  background: white;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.word-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.word-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.meaning-box {
  background: #f9fafb;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.example-box {
  background: #f3f4f6;
  padding: 12px;
  border-radius: 12px;
}

.fade-enter {
  opacity: 0;
  transform: translateY(10px);
}

.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}