@media only screen and (min-width: 768px) {
@keyframes move-bg {
    to {
      background-position: var(--bg-size) 0;
    }
}

@keyframes slide-up {
    0% {
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#roulette {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 195vh;
}

#roulette #roulette-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 58.5%;
}

#roulette #roulette-start {
    width: 10%;
    height: 4vh;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgb(155, 155, 155);
    font-family: 'Inter', sans-serif;
    font-size: 0.8vw;
    font-weight: bold;
    transition: 0.5s ease;
}

#roulette #roulette-start.failed {
    border: 1px solid rgb(114, 48, 48);
    background-color: rgba(73, 36, 36, 0.3);
    color: rgb(151, 48, 48);
}

#roulette #roulette-start:hover {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

#roulette #roulette-options {
    width: 5vw;
}

#roulette #roulette-options div, #roulette-controls div {
    width: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

#roulette #roulette-controls{
    width: 5vw;
}

#roulette #roulette-controls #roulette-stop {
    background-color: rgb(151, 48, 48);
    color: white;
    width: 5vw;
    height: 4vh;
    font-family: 'Inter', sans-serif;
    font-size: 0.8vw;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    transition: 0.5s ease;
}

#roulette #roulette-controls #roulette-stop:hover {
    filter: brightness(1.25);
}

#roulette #roulette-towers {
    display: flex;
    flex-direction: column;
}

#roulette .roulette-tower {
    margin-top: 2vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 0.5vw;
    width: 58.5vw;
    height: 13vh;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

#roulette .roulette-tower.current {
    transform: translateY(2000px);
    animation: slide-up 1s ease-out;
    animation-fill-mode: forwards;
}

#roulette .roulette-tower iframe {
    border-radius: 7.5px;
    width: 17%;
    aspect-ratio: 16/9;
}

#roulette .roulette-tower .roulette-tower-info {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 80%;
}

#roulette .roulette-tower .roulette-tower-info-left {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: first baseline;
    height: 100%;
    margin-left: 0.8vw;
}

#roulette .roulette-tower .roulette-tower-info-left h1 {
    height: 0;
}

#roulette .roulette-tower .roulette-tower-info-left h3 {
    color: rgb(131, 131, 131);
    margin-top: 2vh;
}

#roulette .roulette-tower .roulette-tower-info-controls {
    height: 100%;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    margin-left: auto;
    justify-content: center;
}

#roulette .roulette-tower .roulette-tower-info-controls span {
    display: flex;
    flex-direction: row;
}

#roulette .roulette-tower .roulette-tower-info-controls input {
    height: 25%;
    width: 8vw;
    margin-bottom: 4vh;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 7.5px;
    padding-left: 0.5vw;
    font-family: "Inter", sans-serif;
    color: white;
}

#roulette .roulette-tower .roulette-tower-info-controls span #roulette-submit, #roulette-giveUp {
    height: 3vh;
    width: 3vw;
    font-family: "Inter", sans-serif;
    font-size: 70%;
    border-radius: 7.5px;
    border: none;
    margin-left: 0.9vw;
    margin-right: 0.9vw;
    color: white;
    transition: 0.5s ease;
}

#roulette .roulette-tower .roulette-tower-info-controls span #roulette-submit:hover, #roulette-giveUp:hover {
    filter: brightness(1.25);
}

#roulette .roulette-tower .roulette-tower-info-controls span #roulette-submit {
    background-color: rgb(78, 136, 78);
}

#roulette .roulette-tower .roulette-tower-info-controls span #roulette-giveUp {
    background-color: rgb(177, 56, 56);
}


#roulette #roulette-towers h2 {
    width: 100%;
    text-align: center;
    font-size: 1.5vw;
}
}

.roulette-unverifThumb {
    aspect-ratio: 1/1;
    height: 70%;
    margin-left: 1vw;
}