#win-notifications-container {
    position: fixed;
    top: auto;
    bottom: 120px;
    left: 18px;
    right: auto;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 320px
}

.win-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px 11px 14px;
    background: linear-gradient(135deg, rgba(28, 18, 20, .97), rgba(12, 8, 9, .95));
    border: 1px dashed rgba(255, 210, 77, .45);
    border-radius: 4px 14px 4px 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .5), 0 0 16px rgba(227, 6, 19, .12);
    min-width: 270px;
    max-width: 320px;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(-110%) skewX(-2deg);
    animation: loCouponIn .5s cubic-bezier(.22, 1.15, .36, 1) forwards;
    position: relative;
    overflow: hidden
}

.win-notification::before {
    content: "OFFER";
    position: absolute;
    top: 6px;
    right: 36px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
    color: rgba(255, 210, 77, .55);
    pointer-events: none
}

.win-notification.hiding {
    animation: loCouponOut .28s ease forwards
}

@keyframes loCouponIn {
    0% {
        opacity: 0;
        transform: translateX(-110%) skewX(-4deg) scale(.92)
    }
    70% {
        opacity: 1;
        transform: translateX(6px) skewX(0) scale(1.02)
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewX(0) scale(1)
    }
}

@keyframes loCouponOut {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1)
    }
    100% {
        opacity: 0;
        transform: translateX(-110%) skewX(-3deg) scale(.9)
    }
}

.win-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-decoration: none;
    cursor: pointer;
    min-width: 0
}

.win-link:hover .win-text {
    color: #fff
}

.win-link:hover .win-amount {
    color: #ffd24d;
    text-shadow: 0 0 10px rgba(255, 210, 77, .4)
}

.win-avatar {
    width: 44px;
    height: 44px;
    border-radius: 4px 10px 4px 10px;
    object-fit: cover;
    border: 2px solid rgba(227, 6, 19, .55);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35)
}

.win-content {
    flex: 1;
    min-width: 0
}

.win-text {
    font-size: 13px;
    font-weight: 500;
    color: #ddd0d3;
    line-height: 1.35;
    margin-bottom: 3px;
    transition: color .2s ease
}

.win-name {
    color: #ff6b76;
    font-weight: 800
}

.win-amount {
    color: #2ecc71;
    font-weight: 800;
    transition: color .2s ease, text-shadow .2s ease
}

.win-game {
    font-size: 11px;
    color: rgba(180, 160, 164, .9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.win-close {
    background: rgba(255, 210, 77, .08);
    border: 1px dashed rgba(255, 210, 77, .35);
    border-radius: 4px;
    color: rgba(255, 255, 255, .55);
    font-size: 18px;
    cursor: pointer;
    padding: 2px 8px;
    line-height: 1.2;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
    flex-shrink: 0
}

.win-close:hover {
    color: #fff;
    background: rgba(227, 6, 19, .4);
    border-color: #e30613;
    border-style: solid
}

@media (max-width: 768px) {
    #win-notifications-container {
        top: auto;
        bottom: 88px;
        left: 10px;
        right: 10px;
        max-width: none
    }

    .win-notification {
        min-width: auto;
        max-width: none;
        width: 100%;
        animation-name: loCouponRise
    }

    .win-notification.hiding {
        animation-name: loCouponSink
    }

    @keyframes loCouponRise {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(.94)
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1)
        }
    }

    @keyframes loCouponSink {
        0% {
            opacity: 1;
            transform: translateY(0) scale(1)
        }
        100% {
            opacity: 0;
            transform: translateY(28px) scale(.94)
        }
    }
}
