/* =====================
   NOTIFICATIONS
   ===================== */

.notification-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 25px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: popInCenter 0.5s ease, fadeOutCenter 0.5s ease 3.5s forwards;
    min-width: 400px;
    max-width: 600px;
    pointer-events: auto;
}

.notification-icon {
    font-size: 3.5rem;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.notification-desc {
    font-size: 1.1rem;
    color: #636e72;
}

.notification.xp {
    border-left: 5px solid var(--primary);
}

.notification.achievement {
    border-left: 5px solid var(--gold);
}

.notification.levelup {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    color: white;
    border-left: none;
}

.notification.levelup .notification-title, 
.notification.levelup .notification-desc {
    color: white;
}

.notification.save {
    border-left: 5px solid var(--success);
    font-size: 0.85rem;
    padding: 10px 20px;
}
