.sousBody {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.roulette-wheel {
    position: relative;
    width: calc(var(--rayonCercle) * 2);
    height: calc(var(--rayonCercle) * 2);
    border-radius: 50%;
    background: radial-gradient(circle at center, #9b3636 1%, #000000 100%);
    box-shadow: 0 0 20px #000;
    display: flex;
    border: 2px solid #393535;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    --rayonCercle: 45vmin;
}

.number {
    --tailleNumero: 5vmin;
    position: absolute;
    width: var(--tailleNumero);
    height: var(--tailleNumero);
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 3.3vmin;
    border: 1px solid #000;
    top: 0;
    transform: 
    translateX(calc(40vmin * cos(pi/2 - var(--i) * 2*pi/37))) 
    translateY(calc(-1 * 40vmin * (sin(pi/2 - var(--i) * 2*pi/37) - 1) + 2.5vmin ));


    transform-origin: center center;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: center;
    align-items: center;

}

.red {
    background-color: #c00000;
}

.black {
    background-color: #111;
}

.green {
    background-color: green;
}

.center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid #222;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.center-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Rotation animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s ease-out;
}