@layer components {
    .category-btn {
        @apply px-4 py-2 rounded-full text-gray-700 hover:bg-primary hover:text-white transition duration-300;
    }
    .category-btn.active {
        @apply bg-primary text-white;
    }
    .game-card {
        @apply transition-transform duration-300 hover:scale-105;
    }
}

/* Additional custom styles can be added here */ 