@layer utilities {
            .text-shadow {
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            }
            .card-lift {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .card-lift:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }
            .content-visible {
                content-visibility: auto;
            }
        }
