@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            .watermark {
                position: relative;
            }
            .watermark::after {
                content: "Krishna: The Legendary Warrior";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) rotate(-30deg);
                font-size: 2rem;
                color: rgba(255, 255, 255, 0.1);
                z-index: 10;
                pointer-events: none;
            }
        }
