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