@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: #010409; }
::-webkit-scrollbar-thumb { background: #22C55E; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #16a34a; }

:root {
  --color-primary: #020617;
  --color-accent: #22C55E;
  --color-accent-hover: #16a34a;
  --color-secondary: #60A5FA;
  --color-bg: #010409;
  --color-bg-card: #0d1117;
  --color-text: #E6EDF3;
  --color-text-muted: #8b949e;
  --color-border: #30363d;
}
