.live-feed-section {
    margin-top: 32px;
}

.live-feed-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.live-feed-container::-webkit-scrollbar {
    display: none;
}


.bet {
    display: flex;
    flex-shrink: 0;
    padding: 20px 0;
    position: relative;
    background: linear-gradient(173deg, #111e27 0%, #041521 100%);
    border-radius: 12px;
    text-decoration: none;
    border-bottom: 4px solid #051520;
    border-right: 4px solid #051520;
}

.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.2);
}

.bet:hover .image:before {
    opacity: 1;
}

.bet .image {
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #0a0f11;
    height: 52px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: -10px; /* Ð’Ñ‹Ð½Ð¾ÑÐ¸Ð¼ ÐºÐ°Ñ€Ñ‚Ð¸Ð½ÐºÑƒ Ð½Ð°Ð²ÐµÑ€Ñ… */
    transform: translateX(-50%);
    width: 50px;
    z-index: 1;
}

.bet .image:before {
    background-color: rgba(30, 150, 255, 0.5); /* Ð¦Ð²ÐµÑ‚ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .15s ease;
    z-index: 1;
}

.bet .image img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .3s ease;
    width: 100%;
}

.bet .slotLight {
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.bet .slotLight img {
    position: relative;
    z-index: 2;
}

.bet .slotLight:before {
    animation: glowUp .5s ease forwards;
    background: radial-gradient(circle at center, var(--blue, #fff) 0, #0000 70%);
    border-radius: 50%;
    bottom: -50%;
    content:
    "";
    filter: blur(15px);
    height: 130px;
    left: 50%;
    opacity: .6;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    width: 130px;
}

.bet .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 140px;
    padding: 30px 17px 0px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.bet .info .top {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bet .info p {
    font-size: 11px;
    font-weight: 900;
    opacity: 0;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.bet .info .username {
    color: #8a9eba;
    font-size: .7rem;
    margin-top: 4px;
}

.bet .info .win {
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    padding: 3px 0;
    color: var(--accent-blue);
}


.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: #1a2c38;
}

.live-feed-item-placeholder .placeholder-line {
    background: #1a2c38;
    background-image: linear-gradient(to right, #1a2c38 0%, #253d4e 20%, #1a2c38 40%, #1a2c38 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;
}