/* ===========================================
   LIVE WINS TOAST
   Subtle social proof notifications
   =========================================== */

.wins-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    pointer-events: none;
}

.wins-toast-card {
    background: #141422;
    border: 1px solid #1f1f3a;
    border-radius: 10px;
    padding: 10px 28px 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #ccc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
    max-width: 320px;
}

.wins-toast-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.wins-toast-card .toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(247, 147, 26, 0.1);
    color: #f7931a;
    flex-shrink: 0;
}

.wins-toast-card .toast-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.wins-toast-card .toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wins-toast-card .toast-headline {
    font-size: 13px;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wins-toast-card .toast-headline .toast-amount {
    color: #00ff88;
    font-weight: 600;
}

.wins-toast-card .toast-meta {
    font-size: 11px;
    color: #666;
}

.wins-toast-card .toast-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 2px;
}

.wins-toast-card .toast-close:hover {
    color: #888;
}

/* Mobile: smaller, tighter to edge */
@media (max-width: 768px) {
    .wins-toast {
        bottom: 16px;
        left: 12px;
        right: 12px;
    }
    .wins-toast-card {
        max-width: none;
        font-size: 12px;
        padding: 8px 12px;
    }
    .wins-toast-card .toast-icon {
        width: 28px;
        height: 28px;
    }
    .wins-toast-card .toast-icon svg {
        width: 14px;
        height: 14px;
    }
}
