@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            .pubg-watermark {
                position: relative;
            }
            .pubg-watermark::after {
                content: "PUBG Mobile India";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) rotate(-15deg);
                font-size: 3rem;
                color: rgba(255, 255, 255, 0.08);
                z-index: 10;
                pointer-events: none;
                font-weight: 900;
                letter-spacing: 2px;
            }
            .card-hover {
                transition: all 0.4s ease;
            }
            .card-hover:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            }
            .btn-pulse {
                animation: pulse 2.5s infinite;
            }
            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
                }
                70% {
                    box-shadow: 0 0 0 12px rgba(230, 57, 70, 0);
                }
                100% {
                    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
                }
            }
            .nav-active {
                border-bottom: 3px solid theme('colors.accent');
            }
        }
