@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
#node-grid > div:nth-child(1) { animation-delay: 0.1s; }
#node-grid > div:nth-child(2) { animation-delay: 0.2s; }
#node-grid > div:nth-child(3) { animation-delay: 0.3s; }
#node-grid > div:nth-child(4) { animation-delay: 0.4s; }
#node-grid > div:nth-child(5) { animation-delay: 0.5s; }
#node-grid > div:nth-child(6) { animation-delay: 0.6s; }
#node-grid > div:nth-child(7) { animation-delay: 0.7s; }
#node-grid > div:nth-child(8) { animation-delay: 0.8s; }
