/**
 * Live Winner Notifications CSS
 * Estilos para notificações de ganhos fake - mesmo visual do withdraw-notification
 */

#withdraw-notifications-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10000;
    pointer-events: none;
}

.live-winner-notification {
    position: relative;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffdc92, #f2b84b);
    color: #2b1a05;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 
        0 8px 20px rgba(255, 185, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 #b77722;
    max-width: 278px;
    min-width: 166px;
    animation: slideInLeft 0.4s ease-out;
    opacity: 1;
    transform: translateX(0);
    border: 1px solid rgba(255, 215, 160, 0.4);
    backdrop-filter: blur(10px);
    font-family: 'Inter', '-apple-system', 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: auto;
}

.live-winner-notification.hide {
    animation: slideOutLeft 0.4s ease-in forwards;
}

.live-winner-notification-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
    font-size: 0.7rem;
    color: rgba(43, 26, 14, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 600;
    white-space: nowrap;
}

.live-winner-notification-icon {
    width: 14px;
    height: 14px;
    background: rgba(255, 215, 160, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    color: #b77722;
}

.live-winner-notification-content {
    font-size: 0.75rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.live-winner-notification-name {
    font-weight: 600;
    color: #2b1a05;
    font-size: 0.75rem;
    white-space: nowrap;
}

.live-winner-notification-amount {
    font-weight: 700;
    color: #b77722;
    font-size: 0.8rem;
    margin-top: 0;
    display: inline;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-300px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .live-winner-notification {
        max-width: 200px;
        min-width: 140px;
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    .live-winner-notification-header {
        font-size: 0.6rem;
    }
    
    .live-winner-notification-content {
        font-size: 0.65rem;
    }
    
    .live-winner-notification-name {
        font-size: 0.65rem;
    }
    
    .live-winner-notification-amount {
        font-size: 0.7rem;
    }
}
