@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            .mlbb-watermark {
                position: relative;
            }
            .mlbb-watermark::after {
                content: "Mobile Legends: Bang Bang";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) rotate(-15deg);
                font-size: 2rem;
                color: rgba(255, 255, 255, 0.05);
                z-index: 10;
                pointer-events: none;
                font-weight: 900;
            }
            .nav-active {
                border-left: 4px solid theme('colors.accent');
                padding-left: 4px;
                color: theme('colors.accent');
            }
            .card-hover {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .card-hover:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            }
        }
