/* Contenitore principale del video e delle statistiche */
.mega-wheel-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #1A1232; /* Colore di sfondo viola */
    padding: 20px;
    border-radius: 10px;
}

/* Stile del video */
.mega-wheel-video {
    flex: 1;
    background-color: #000; /* Colore nero per il video */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.mega-wheel-video video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Barra dei numeri */
.mega-wheel-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px;
    background-color: #282046; /* Colore scuro per il box dei risultati */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Stile per rimpicciolire le immagini degli ultimi numeri usciti */
.mega-wheel-bar img {
    width: 40px;  /* Imposta la larghezza desiderata */
    height: auto;  /* Mantieni le proporzioni dell'immagine */
    margin: 0 5px; /* Spazio tra le immagini */
}

.mega-wheel-bar .spin-number {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 0 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.mega-wheel-bar .spin-number:nth-child(1) {
    background-color: #F6DAA9; /* Colore del numero 1 */
}

.mega-wheel-bar .spin-number:nth-child(2) {
    background-color: #F68D3D; /* Colore del numero 10 */
}

.mega-wheel-bar .spin-number:nth-child(3) {
    background-color: #4AB5A6; /* Colore del numero 20 */
}

.mega-wheel-bar .spin-number:nth-child(4) {
    background-color: #EAB54E; /* Colore del numero 2 */
}

.mega-wheel-bar .spin-number:nth-child(5) {
    background-color: #F15A5C; /* Colore del numero 15 */
}

/* Aggiorna i colori per gli altri numeri in modo simile */

/* Sezione laterale delle statistiche */
.mega-wheel-stats {
    flex: 0.35;
    margin-left: 20px;
    color: #FFFFFF;
}

.mega-wheel-stats h1 {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.mega-wheel-stats p {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.mega-wheel-stats .recommended-casino {
    background-color: #3F2A79; /* Sfondo viola scuro */
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.mega-wheel-stats .recommended-casino p {
    color: #FFFF00; /* Testo giallo */
    font-weight: bold;
    margin-bottom: 10px;
}

.mega-wheel-stats .recommended-casino a {
    display: inline-block;
    background-color: #FFA500; /* Bottone arancione */
    padding: 10px 15px;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
}