@layer utilities {
            .text-shadow-spice {
                text-shadow: 2px 2px 4px rgba(155, 93, 229, 0.3);
            }
            .btn-bounce {
                transition: transform 0.2s ease;
            }
            .btn-bounce:hover {
                transform: translateY(-3px);
            }
            .card-hover {
                transition: all 0.3s ease;
            }
            .card-hover:hover {
                transform: scale(1.02);
                box-shadow: 0 10px 25px -5px rgba(230, 57, 70, 0.1);
            }
        }
