@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }
            .nav-active {
                @apply border-b-2 border-primary;
            }
        }
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        html {
            scroll-behavior: smooth;
        }
        .game-tag {
            transition: all 0.3s ease;
        }
        .game-tag:hover {
            transform: translateY(-2px);
        }
        .btn-effect {
            transition: all 0.3s ease;
        }
        .btn-effect:hover {
            transform: scale(1.05);
        }
