@font-face {
    font-family: "myFont1";
    src: url("../font/Impact.ttf");
}

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

html {
    background-color: #000000;    
}

.content{
    font-family: 'open sans';
}

h1, h2, h3 {
    font-family: myFont1;
    font-weight: 100;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    color: #fff;
    margin-left: 25px;
    margin-right: 25px;    
}

header {
    height:auto;
    margin-bottom:25px;
    background-repeat: no-repeat;
    background-position:center;
    background-attachment: cover;
}

.contenido-header {
    margin-top:50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.contenido-header img {
    width:  50px;
    height: auto;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.contenido-header2 {
    display: block;    
    text-align: center;
    padding: 0;
    margin: 0;
}

.contenido-header .titulo-header {
    font-size: 120px;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.contenido-header .linea-header {
    width: 700px;
    margin: auto;
    height:2px;
    background: #fff;
    margin-bottom:20px;
    text-align: center;
}

.contenido-header .texto-header {
    color:#fff;
    margin-bottom:20px;
    margin-top: -10px;
    text-align: center;    
    font-family: myFont1;
    font-weight: 100;
    font-size: 30px;
}

.contenido-header .action-header {
    display: inline-block;
    margin: auto;
    text-decoration: none;
    border:2px solid #fff;
    padding: 10px 20px;
    border-radius: 7px;    
    background: #000;    
    font-family: myFont1;
    font-size: 20px;    
    color: #fff;
    margin-bottom: 25px;
    margin-top: -15px;
}

.contenido-header .action-header:hover {
    background: #fff;
    color: #000;
}

.action-header-icons {
    display: inline-block;
    margin: auto;
    color: #fff;   
    text-decoration: none;
    border:2px solid transparent;
    border-radius: 5px;
}

.contenedor-imagenes {
    display:flex;
    width: 99%;
    margin: auto;
    justify-content: space-around;
    flex-wrap: wrap;
    border-radius:3px;
    text-align: center;
    margin-bottom: 20px;
}

.contenedor-imagenes h2 {
    margin-bottom: 0px;
}

.contenedor-imagenes .imagen {
    width: 206px;
    position: relative;
    height:auto;
    margin-bottom:10px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .75);
}

.imagen img {
    width: 100%;
    height:auto;
    object-fit: cover;        
    display: block;    
    margin-left: auto;
    margin-right: auto;
}

#imageGame {
    border-radius: 15px;
    border: 2px solid #000000;
}

a {
    text-decoration: underline ;
    color: #f1f1f1;    
}

#social img, #social_extra img {
    width:  48px;
    height: auto;
    margin: 0;
    padding: 0;    
}

#social-tmp img {
    width:  192px;
    height: auto;
    margin: 0;
    padding: 0;
    margin-top: 25px;
}

#social a, #social_extra a, #social-tmp a {
    display: inline-block;     
    padding: 0;
    margin: 0px 2px 25px 2px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#social a:hover, #social-tmp a:hover, #social_extra a:hover {    
    opacity: 0.5;
}

#social p {
    margin: -10px,0,0,0;
}

.contenido-header2 #socialTitle {
    margin-top: 50px;
}

#PrivacyPolicy {
    margin: 0;
}

p {
    color: #fff;
    padding: 0;
    margin: 0;    
}

#PrivacyPolicy h1, h2, h3, h4, h5 {
    text-align: center;
    color: #fff;
    margin-right: 25px;
    margin-left: 25px;
}

h2 {
    text-align: center;
    color: #fff;    
    margin: 0;    
}

#PrivacyPolicy h2 {
    font-size: 30px;
}

#PrivacyPolicy h3 {
    margin-bottom: 0px;
    margin-top: 20px;
}

#social h2 {
    text-align: center;
    color: #fff;    
    margin: 0px 0px -3px 0px;
    font-family: myFont1;
    font-weight: 100;
    font-size: 30px;
}

#PrivacyPolicy p, #lasUpdatePrivacy {
    text-align: center;
    padding: 0;
    margin-right: 25px;
    margin-left: 25px;
    color: #e3e3e3;
    margin-bottom:0px;
}

#lasUpdatePrivacy {
    margin-bottom:20px;
    margin-top:-3px;
}

.footer {
    left: 0;
    bottom: 0;
    margin: 0;
    text-align: center;
    background-color: #000000;
}

.lineUp {
    animation: 2s anim-lineUp ease-out;
}

@keyframes anim-lineUp {
    0% { opacity: 0; transform: translateY(80%); }
    20% { opacity: 0; }
    50% { opacity: 1; transform: translateY(0%); }
    100% { opacity: 1; transform: translateY(0%); }
}

.fromtop {
    animation: 2s anim-fromtop linear;
}

@keyframes anim-fromtop {
    0% { opacity: 0; transform: translateY(-100%);}
    25% { opacity: 1; transform: translateY(0%);}
    50% {}
    100% {}
}

.flipY {
    animation-name: spin, depth;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 5s;
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-360deg); }
}

@keyframes depth {
    0% { text-shadow: 0 0 black; }
    25% { text-shadow: 1px 0 black, 2px 0 black, 3px 0 black, 4px 0 black, 5px 0 black; }
    50% { text-shadow: 0 0 black; }
    75% { text-shadow: -1px 0 black, -2px 0 black, -3px 0 black, -4px 0 black, -5px 0 black; }
    100% { text-shadow: 0 0 black; }
}

.game-container {
    position: relative;
    display: inline-block;
    width: 100%;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: 15px;
    flex-wrap: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;/*atraso na visibilidade*/
    z-index: 10;
	pointer-events: none;/*overlay não intercepta clique enquanto não ativo*/
}

.overlay.active {
    opacity: 1;
    visibility: visible;
	transition: opacity 0.4s ease; /*sem delay aqui*/
	pointer-events: auto;/*quando ativo, permite cliques (fechar clicando na área escura)*/
}

/*garante que o botão/ícone receba ponteiro*/
.platform-link, .platform-link .button-icon {
  pointer-events: auto;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.platform-link:hover {
	opacity: 0.5;
}

.button-icon {
    width: 64px !important;
    height: auto !important;
    transform: none !important;/*remove qualquer scale antigo*/
    opacity: 0;
    cursor: pointer;
}

/*Nome das plataformas*/
.platform-name {
    margin-top: 5px;
    font-size: 20px;
    font-family: myFont1;
    opacity: 0;
}

.platform-link:hover .platform-name {
    text-decoration: underline;
	/*opacity: 0.5 !important;*/
}

/*Hover somente no ícone*/
/*.platform-link .button-icon:hover {
  opacity: 0.5 !important;
}*/

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*Aplica animação quando overlay ativo*/
.overlay.active .platform-link .button-icon,
.overlay.active .platform-link .platform-name {
	animation: fadeIn 1.25s ease forwards;
}

/*Sequência animada com delay*/
.overlay.active .platform-link:nth-child(1) .button-icon,
.overlay.active .platform-link:nth-child(1) .platform-name {
    animation-delay: 0s;
}

.overlay.active .platform-link:nth-child(2) .button-icon,
.overlay.active .platform-link:nth-child(2) .platform-name {
    animation-delay: 0.25s;
}

.game-container:hover {
   border:2px solid #fff;
   border-radius: 15px; 
}