@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes grow {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fade { animation: fade 0.6s ease-in-out; }
.animate-grow { animation: grow 0.8s ease-out; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05070D; }
::-webkit-scrollbar-thumb { background: #00C896; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #00a67d; }

:root {
  --color-primary: #0A0F1C;
  --color-primary-dark: #05070D;
  --color-accent: #00C896;
  --color-accent-hover: #00a67d;
  --color-bg: #05070D;
  --color-text: #D9E6F2;
  --color-text-muted: #8B9BA8;
  --color-border: #1a2332;
}
