@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }
            .nav-shadow {
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            }
            .content-auto {
                content-visibility: auto;
            }
            .pandal-hover {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .pandal-hover:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }
            .scroll-indicator {
                height: 3px;
                background-color: #E63946;
                position: fixed;
                top: 0;
                left: 0;
                z-index: 100;
                width: 0%;
            }
        }
