body{
    position: relative;
    top:0;
    left:0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    min-width: 390px;
    max-width: 400px;
    min-height: 720px;
    max-height: 810px;
    background-color: #000;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: #FFF;
    overflow: hidden;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 150px;
    padding: 10px;
    margin: 0;
}

main{
    display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0px;
    width: 100%;
    height: calc(100% - 150px - 40px);
}

footer {
    display: flex;
    justify-content: center;
    justify-self: baseline;
    background-color: #2c2c2c;
    color: #cacaca;
    text-align: justify;
    align-items: center;
    padding: 5px;
    margin: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    font-size: clamp(6px, 9px, 8px);
    padding-bottom: calc(5px + env(safe-area-inset-bottom));
}

hr{
    border: 1px solid darkred;
    width: 100%;
}

/** DEFAULT FOR ALL **/
html {
    box-sizing: border-box;
    font-family: var(--font-chakra);
}
*, *::before, *::after {
    box-sizing: inherit;
    font-family: inherit;
}

/* COMUM CLASS */
.row{
	display: flex;
	flex-direction: row;
}
.col{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.epicToken-img{
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 60%;
    z-index: 1;
}

/* Force Token */
/* Estilo base do botão */
.force_token .force {
    position: relative; /* Necessário para posicionamento de efeitos */
    display: flex;      /* Para centralizar o ícone facilmente */
    flex-direction: column;
    justify-content: center; /* Centraliza o ícone horizontalmente */
    align-items: center;     /* Centraliza o ícone verticalmente */
    
    /* Define o tamanho e a forma do botão */
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Essencial para deixar o botão redondo */

    color: #ffffff; /* Cor do ícone */
    background-color: #1a2533; /* Fundo azul escuro */
    border: 2px solid #04ff00; /* Cor da borda estilo sabre de luz azul */

    cursor: pointer;
    overflow: hidden; /* Garante que os efeitos não "vazem" */
    
    /* Prepara para transições suaves de efeitos no hover */
    transition: all 0.3s ease-in-out;

    /* Aplica a animação de brilho pulsante */
    animation: force-glow-green 4s infinite ease-in-out;
}

/* Estilo para o ícone dentro do botão */
.force_token .force span, .force_token .force i{
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse sobre o botão */
.force_token .force:hover {
    background-color: #1b341a;
    box-shadow: 0 0 25px rgba(0, 255, 21, 0.8);
    border-color: #7dfd8c;
}

/* Efeito no ícone ao passar o mouse */
.force_token .force:hover span, .force_token .force:hover i{
    transform: scale(1.15);
}

.force_token .force.hero{
    background-color: #172a44;
    border: 2px solid #00aaff;
    animation: force-glow-blue 4s infinite ease-in-out;
}
.force_token .force.hero:hover{
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
    border-color: #74d5ff;
}
.force_token .force.villain{
    background-color: #441717;
    border: 2px solid #ff0000;
    animation: force-glow-red 4s infinite ease-in-out;
}
.force_token .force.villain:hover{
    box-shadow: 0 0 25px rgba(255, 10, 10, 0.8);
    border-color: #ffb5b5;
}

/* ANIMAÇÃO DO BRILHO VERDE (Keyframes) */
@keyframes force-glow-green {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(10, 255, 10, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    }
}
/* ANIMAÇÃO DO BRILHO AZUL (Keyframes) */
@keyframes force-glow-blue {
    0% {
        box-shadow: 0 0 5px rgba(0, 170, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 170, 255, 0.5);
    }
}
/* ANIMAÇÃO DO BRILHO VERMELHO (Keyframes) */
@keyframes force-glow-red {
    0% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 10, 10, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
}


/* SCROLL BAR */
::-webkit-scrollbar {
    width: 10px;
    background-color: #000;
    border-radius: 5px;
    border: 1px solid #FFF;
}
::-webkit-scrollbar-thumb {
    background-color: #30475E;
    border-radius: 5px;
    cursor: pointer;
}