* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #000;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.roulette-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1670px;
    height: 1670px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#wheel {
    position: absolute;
    top: 17%;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: contain;
    transform-origin: center;
    opacity: 1;
    transition: transform 6.5s cubic-bezier(.15, .85, .3, 1);
}

/* ponteiro */
#pointer {
    position: absolute;
    top: -420px;
    left: 50%;
    width: 1200px;
    height: auto;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.roulette-ready #wheel {
    opacity: 1;
}