@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            .content-auto {
                content-visibility: auto;
            }
            .nav-active {
                @apply border-b-2 border-accent text-accent;
            }
        }
        body {
            line-height: 1.8;
        }
        html {
            scroll-behavior: smooth;
        }
        .game-img {
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .btn-primary {
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
