/* ================================
   NOTIFICATIONS
   ================================ */
#notification-overlay {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
}

.pixel-notification {
    background: #16213e;
    /* var(--bg-secondary) */
    border: 3px solid #ff6b6b;
    /* var(--accent-primary) */
    color: #effffa;
    /* var(--text-primary) */
    padding: 1rem 2rem;
    font-family: 'Press Start 2P', cursive;
    /* var(--font-pixel) */
    font-size: clamp(0.7rem, 2vw, 1rem);
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    animation: notificationAnim 3.5s ease forwards;
    pointer-events: auto;
    max-width: 80%;
    text-align: center;
    line-height: 1.5;
}

@keyframes notificationAnim {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
}