.winners-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.winners-container .header {
    text-align: center;
    z-index: 12;
    margin-bottom: 20px;
}

.winners-container .header h2 {
    color: #61E2FF;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trophy-icon {
    font-size: 24px;
    color: #FFD700;
}

.winners-carousel {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.winners-track {
    display: flex;
    gap: 20px;
    padding: 12px;
    animation: scroll-horizontal 20s linear infinite;
    white-space: nowrap;
}

.winner-card {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.game-image {
    width: 140px;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3a2d61 0%, #2a1f47 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.winner-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.username {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
}

.win-amount {
    color: #61E2FF;
    font-size: 18px;
    font-weight: 700;
}

.game-name {
    color: #B0B8C5;
    font-size: 13px;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Gradient for smooth fading at the edges */
.winners-carousel::before,
.winners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.winners-carousel::before {
    left: 0;
    background: linear-gradient(to right, #13092A, rgba(19, 9, 42, 0));
}

.winners-carousel::after {
    right: 0;
    background: linear-gradient(to left, #13092A, rgba(19, 9, 42, 0));
}

@media (max-width: 480px) {
    .winners-carousel {
        height: 230px;
    }
    .winner-card {
        min-width: 120px;
    }
    .game-image {
        width: 120px;
        height: 160px;
    }
    .winners-container .header h2 {
        font-size: 20px;
    }
}