@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }
            .game-watermark {
                position: relative;
            }
            .game-watermark::after {
                content: "Chotta Bheem VR Adventure";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) rotate(-20deg);
                font-size: 2.5rem;
                color: rgba(255, 255, 255, 0.15);
                z-index: 10;
                pointer-events: none;
                font-weight: bold;
            }
            .nav-mobile {
                transition: all 0.3s ease-in-out;
            }
            .btn-bounce {
                transition: transform 0.2s ease;
            }
            .btn-bounce:hover {
                transform: translateY(-3px);
            }
        }
