/* === CONFIGURAÇÃO GLOBAL === */

body {
  background-color: #000000; /* Fundo preto total */
  overflow: hidden;          /* Evita rolagem da página */
}

/* Gradiente lateral esquerda no main */
main::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 80vh;
  background: linear-gradient(92deg, #000 25%, rgba(0, 0, 0, 0) 75%) no-repeat;
}


/* === PERSONAGENS === */

/* Todos os personagens ficam ocultos por padrão */
main .personagem {
  display: none;
  height: 100vh;
}

/* Exibe o personagem selecionado */
main .personagem.selecionado {
  display: block;
}

/* Imagem do personagem ocupa toda a área */
main .personagem .imagem {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cobre o espaço sem distorcer */
}


/* === CONTEÚDO SOBRE O PERSONAGEM === */

.conteudo {
  position: absolute;
  top: 0;
  left: 120px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 380px;
  z-index: 1; /* Fica acima da imagem */
}

/* Nome estilizado */
.conteudo .nome-personagem {
  color: #ffffff;
  font-size: 48px;
  font-family: "Secular One";
  font-weight: 400;
  margin-bottom: 20px;
}

/* Texto da descrição */
.conteudo .descricao {
  color: #ffffff;
  font-family: "Rubik";
  font-size: 16px;
  line-height: 24px;
}


/* === BARRA DE BOTÕES LATERAL === */

.botoes {
  background-color: rgba(0, 0, 0, 0.3); /* Fundo transparente escuro */
  position: fixed;
  top: 0;
  right: 0;
  width: 180px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}


/* === BOTÕES DE PERSONAGENS === */

.botoes .botao {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background-color: #000000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Deixa o ícone redondinho também */
.botoes .botao img {
  border-radius: 50%;
}

/* Botão selecionado fica maior e com glow */
.botoes .botao.selecionado {
  transform: scale(1.2);
  box-shadow: 0 0 10px #d9d9d9;
}


/* === CORES PERSONALIZADAS POR PERSONAGEM SELECIONADO === */

.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;
}
