/* FOMO Notifications */
#fomo-notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.fomo-toast {
    background: rgba(12, 7, 21, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 217, 232, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(5, 217, 232, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    max-width: 300px;
}

.fomo-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.fomo-toast-icon {
    font-size: 20px;
    color: var(--ticket-pink);
    animation: fomo-pulse 1s infinite alternate;
}

.fomo-toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fomo-toast-title {
    font-size: 11px;
    color: var(--ticket-blue);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.fomo-toast-message {
    line-height: 1.4;
}

@keyframes fomo-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    #fomo-notification-container {
        bottom: 80px; /* Above taskbar */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        align-items: center;
    }
    
    .fomo-toast {
        transform: translateY(100%);
        max-width: 100%;
        width: 100%;
    }
    
    .fomo-toast.show {
        transform: translateY(0);
    }
}
