@layer utilities {
            .text-shadow {
                text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            }
            .card-hover {
                transition: all 0.3s ease;
            }
            .card-hover:hover {
                transform: translateY(-3px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            .para-spacing {
                margin-bottom: 1rem;
                line-height: 1.8;
            }
            .section-break {
                margin-bottom: 3rem;
            }
            .watermark-img {
                position: relative;
            }
            .watermark-img::after {
                content: "Cricket-Basket Fusion";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) rotate(-15deg);
                font-size: 2.5rem;
                color: rgba(255, 255, 255, 0.1);
                font-weight: 900;
                z-index: 10;
                pointer-events: none;
            }
        }
