body {
  background-color: #000000;
  overflow: hidden;
}
main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;

    min-height: 100vh;
    width: 80vh;
    background: linear-gradient(95deg, #000 25%, rgba(0, 0, 0, 0) 75%) no-repeat;

}

main .personagem {
  display: none;
  height: 100vh;
}
main .personagem.selecionado {
  display: block;
}
main .personagem .imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .personagem .imagem {
  transition: opacity 0.8s ease-in-out;
}

.conteudo {

  position: absolute;
  top: 0;
  left: 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  max-width: 580px;
  z-index: 1;
}

.conteudo .nome-personagem {
  color: aliceblue;
  font-size: 48px;
  font-family: "Rubik Dirt", cursive;
  font-weight: 900;
  margin-bottom: 20px;
}
.conteudo .descricao {
    color: aliceblue;
    font-family: "Bad Script", cursive;
    font-size: 19px;
    line-height: 24px;
}
.botoes {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 16px;

}
.botoes .botao {
    border: none;
    background-color: #000000;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
}
.botoes .botao img {
    border-radius: 50%;
}
.botoes .botao.selecionado {
    transform: scale(1.2);
    box-shadow: 0 0 10px #D9D9D9;
}

.botoes .botao.cyberstorm.selecionado {
  box-shadow: 0 0 10px #47ffc5;
}

.botoes .botao.codepixie.selecionado {
  box-shadow: 0 0 10px #9747ff;
}

.botoes .botao.hexblade.selecionado {
  box-shadow: 0 0 10px #ffa947;
}

.botoes .botao.neonpulse.selecionado {
  box-shadow: 0 0 10px #e4309a;
}

.botoes .botao.codebreaker.selecionado {
  box-shadow: 0 0 10px #fff047;
}

#audio-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  color: white;
  z-index: 9999;
}

#audio-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}

