@layer utilities {
  .animate-fade-in {
    animation: fadeIn 0.4s ease-out;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  background-color: #0b0c10;
  color: #e2e8f0;
}

/* Custom Scrollbar for Studio feel */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0f1115; 
}

::-webkit-scrollbar-thumb {
  background: #2d3748; 
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a5568; 
}
