/* Betting Results Block Styles - BEM */
.betting-results {
    max-width: 100%;
    margin: 0 auto;
    background: #1a1a1a;
    color: #ffffff;
    overflow: hidden;
    padding: 16px 0;
}

.betting-results--full-width {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.betting-results__marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.betting-results__content {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    animation: scroll 45s linear infinite;
    padding: 0 20px;
    white-space: nowrap;
    animation-delay: 0s;
    animation-fill-mode: none;
    will-change: transform;
}

.betting-results__item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.betting-results__description {
    color: hsl(216 10% 70%);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 0;
}

.betting-results__status {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 106%;
    flex-shrink: 0;
    padding: 4px 8px;
}

.betting-results__status--win {
    background: hsl(142deg 71% 45% / 20%);
    color: hsl(142deg 71% 45%);
}

.betting-results__status--lose {
    background: hsl(0 75% 60% / 20%);
    color: hsl(0 75% 60%);
}

.betting-results__status--push {
    background: hsl(0 0% 83% / 20%);
    color: hsl(0, 0%, 83%);
}

.betting-results__profit {
    color: hsl(186 100% 33%);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.betting-results__separator {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Alternative smooth infinite scroll */
.betting-results__content:hover {
    animation-play-state: paused;
}

/* Pause animation on hover */
.betting-results__marquee:hover .betting-results__content {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .betting-results {
        padding: 12px 0;
    }
    
    .betting-results__content {
        gap: 12px;
        padding: 0 16px;
    }
    
    .betting-results__item {
        gap: 8px;
        padding: 6px 12px;
    }
    
    .betting-results__description {
        font-size: 12px;
        max-width: 150px;
    }
    
    .betting-results__status {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .betting-results__profit {
        font-size: 12px;
    }
    
    .betting-results__separator {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 600px) {
    .betting-results {
        padding: 10px 0;
    }
    
    .betting-results__content {
        gap: 10px;
        padding: 0 12px;
    }
    
    .betting-results__item {
        gap: 6px;
        padding: 4px 10px;
    }
    
    .betting-results__description {
        font-size: 11px;
        max-width: 120px;
    }
    
    .betting-results__status {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .betting-results__profit {
        font-size: 11px;
    }
    
    .betting-results__separator {
        width: 2px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .betting-results {
        padding: 8px 0;
    }
    
    .betting-results__content {
        gap: 8px;
        padding: 0 8px;
    }
    
    .betting-results__item {
        gap: 4px;
        padding: 3px 8px;
    }
    
    .betting-results__description {
        font-size: 10px;
        max-width: 100px;
    }
    
    .betting-results__status {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .betting-results__profit {
        font-size: 10px;
    }
    
    .betting-results__separator {
        width: 2px;
        height: 2px;
    }
}