body {
    margin: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    touch-action: none;
}

#player {
    position: relative;
    width: 1000px;
}

video {
    width: 100%;
    display: block;
}

/* ÁREA DOS BOTÕES */
#quizArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* BOTÕES */
.opcao {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    display: none;
    pointer-events: auto;
    border-radius: 20px;
}

/* BOTÃO SELECIONADO */
.selecionado {
    border: 4px solid yellow !important;
    background: rgba(255, 255, 0, 0.15) !important;
    box-shadow: 0 0 15px yellow;
}

/* IMAGEM DE ERRO */
#imagemErro {
    position: absolute;
    width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 999;
}

/* TELA INICIAL */
#telaInicial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#telaInicial h1 {
    color: white;
    font-size: 50px;
    font-family: Arial;
}