/* XP Toast Notification */
.xp-toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.xp-toast::before {
    content: '✨';
}