body { 
  font-family: 'Inter', sans-serif; 
  scroll-behavior: smooth; 
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1e293b; }
::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Prose link styles for blog */
.prose a { color: #2563eb; text-decoration: underline; transition: opacity 0.2s; font-weight: 700; }
.prose a:hover { opacity: 0.8; }
.dark .prose a { color: #60a5fa; }
