.winnerListUl {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.winnerListUl .scrollInner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
} 

.winnerList:hover {
    opacity: 1;
}

.winnerUsername {
    display: flex;
    font-size: 0.75rem;
}

.winAmt {
    text-align: end;
    font-weight: bold;
} 
.winlist_wrapper {
    background: #ffffff73;
    border-radius: .8rem;
    padding: .75rem;
    border: 2px solid #ffffff9c;
}
.winlistTitle {
    font-size: 1.35rem;
    text-transform: uppercase;
    font-family: 'Winky2';
    font-style: italic;
    font-weight: 600;
    color: #0d6cff;
    text-align: center;
    text-shadow: 0 0 1px;
}
li.details {
    text-align: end;
    padding-right: 1.5rem;
    height: 100%;
    justify-content: space-around;
    display: flex;
    flex-flow: column;
}
.winnerImgWrapper {
    height: 4rem;
    width: 4rem;
    border-radius: .75rem;
    overflow: hidden;
}
.winImg { 
    width: 100%;
    height: 100%;
}

div#winnerList {
    margin-top: 1rem;
    margin-bottom: .75rem;
}
li.winnerList {
    height: 5.5rem;
}
.winnerList ul {
    padding: 0.5rem;
    display: grid;
    grid-template-columns: 85% 15%;
    align-items: center;
    border-radius: 0.75rem;
    color: white;
    opacity: 0.95;
    transition: opacity 0.3s;
    border: 2px solid;
    padding-right: 2rem;
}
li.details {
    text-align: end;
    padding-right: 1.5rem;
}
ul.winnerListWrapper li.details span.text-\[\#000\] {
    font-style: italic;
}
ul.winnerListWrapper li.details span.text-\[\#0d6cff\] {
    font-weight: 600;
}

ul.winnerListWrapper li.details span.text-\[\#ff32ab\] {
    font-weight: 600;
    font-style: italic;
}
.winnerListUl .scrollInner { 
    animation-play-state: running; 
    cursor: pointer;
} 
.winnerListUl .scrollInner:hover,
.winnerListUl .scrollInner:active,
.winnerListUl .scrollInner:focus {
    animation-play-state: paused;
}



































