/* 🔥 XP POPUP ANIMATION (FOR ALL GAMES) 🔥 */
.xp-popup { 
    position: absolute; 
    color: #38bdf8; 
    font-weight: bold; 
    font-size: 1.2rem; 
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8); 
    animation: floatUp 1.5s ease-out forwards; 
    z-index: 9999; 
    pointer-events: none; 
}

@keyframes floatUp { 
    0% { opacity: 1; transform: translateY(0) scale(1); } 
    100% { opacity: 0; transform: translateY(-50px) scale(1.5); } 
}