.live-feed-section {
    margin-top: 24px;
    margin-bottom: 32px;
    
}

.live-feed-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.live-feed-container::-webkit-scrollbar {
    display: none;
}


.bet {
    display: flex;
    flex-shrink: 0;
    padding: 16px 20px;
    position: relative;
    background: linear-gradient(145deg, #1e1e24 0%, #16161a 100%);
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 150px;
    transition: all 0.3s ease;
}

.bet:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.live-feed-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.bet:hover .image img {
    transform: scale(1.1);
}

.bet .image {
    border-radius: 10px;
    height: 44px;
    width: 44px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 14px;
    background: #27272a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bet .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.bet .slotLight {
    display: none;
}

.bet .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 80px;
    position: relative;
    z-index: 1;
    text-align: left;
    gap: 4px;
}

.bet .info .top {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bet .info p {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: #71717a;
    letter-spacing: 0.3px;
}

.bet .info .username {
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 500;
}

.bet .info .win {
    font-size: 15px;
    font-weight: 700;
    color: #22c55e;
    margin: 0;
}

.bet .info .win.loss {
    color: #ef4444;
}


.live-feed-item.removing {
    animation: slideOut 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes xAppear {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes glowUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: .2;
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.live-feed-item-placeholder {
    pointer-events: none;
    
}

.live-feed-item-placeholder .image {
    background-color: #18181b;
}

.live-feed-item-placeholder .placeholder-line {
    background: #18181b;
    background-image: linear-gradient(to right, #232327 0%, #1d1d23 20%, #292930 40%, #18181b 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    animation: shimmer 1.5s linear infinite;
    border-radius: 4px;
    height: 12px;
    margin: 0 auto;
}

.live-feed-item-placeholder .info p.placeholder-line {
    margin-bottom: 8px;
    height: 11px;
}

.live-feed-item-placeholder .info .win-placeholder {
    height: 16px;
    width: 60%;
    margin-bottom: 8px;
    margin-top: 4px;
}

.live-feed-item-placeholder .info .placeholder-line:last-child {
    height: 10px;
    margin-top: 4px;
}