/* Custom Utilities for Neobrutalism */
/* Note: Tailwind directives removed as we are using CDN */

.shadow-neobrutalism {
    box-shadow: 4px 4px 0px 0px #000000;
}

.shadow-neobrutalism-lg {
    box-shadow: 8px 8px 0px 0px #000000;
}

.shadow-neobrutalism-hover:hover {
    box-shadow: 2px 2px 0px 0px #000000;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}