/* Achievement Notification Styles */
#achievement-notifications {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.achievement-notification {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
    animation: slideInRight 0.5s ease-out, fadeOut 0.5s ease-in 4.5s;
    animation-fill-mode: forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateX(450px);
    }
}

.achievement-notification .achievement-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.achievement-notification .badge-icon {
    font-size: 3rem;
}

.achievement-notification .achievement-content {
    flex: 1;
}

.achievement-notification h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievement-notification h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #333;
}

.achievement-notification p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: #666;
}

.achievement-notification small {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    #achievement-notifications {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .achievement-notification {
        padding: 1rem;
        gap: 1rem;
    }
    
    .achievement-notification .achievement-badge {
        width: 60px;
        height: 60px;
    }
    
    .achievement-notification .badge-icon {
        font-size: 2rem;
    }
}
