html { font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }
body { background: #0a0a0f; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #111116; }
::-webkit-scrollbar-thumb { background: #2a2a35; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a48; }

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
}

.drop-active { border-color: #818cf8 !important; background-color: rgba(99,102,241,0.08) !important; }

.fade-in { animation: fadeIn .35s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:translateY(0);} }

.toast { animation: toastIn .2s ease, toastOut .2s ease 2.8s forwards; }
@keyframes toastIn { from { opacity:0; transform: translateY(10px);} to {opacity:1; transform: translateY(0);} }
@keyframes toastOut { to { opacity:0; transform: translateY(10px);} }

/* Crop box */
#cropBox {
  cursor: move;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.6);
}
.crop-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #818cf8;
  border: 2px solid white;
  border-radius: 4px;
  touch-action: none;
}

/* Aspect ratio preset buttons */
.aspect-btn {
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .12s ease;
}
.aspect-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
.aspect-btn.active {
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff;
}
