@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            }
            .card-hover {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .card-hover:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px -5px rgba(155, 34, 38, 0.3);
            }
            .nav-item {
                @apply px-4 py-2 rounded-md transition-all duration-300 hover:bg-primary hover:text-white;
            }
        }
