body{
    background: #0c0615;
    overflow-x: hidden;
    overflow-x: -webkit-paged-x;
}

body, p, a, header, section, nav, h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    color: #fff;
    text-decoration: none;
    
}

input, textarea {
    box-sizing: border-box;
    font-family: roboto, sans-serif;
    font-size: 16px;
    color: #fff;
}

.clear {
    clear: both;
}

.contentRegulation {
    width: 80%;
    max-width: 1920px;
    margin: 0 auto;
}

.overflowHidden{
    overflow: hidden;
}

.hide{
    display:none;
}

/*******************************************************Header*/

header {
    position: fixed;
    height: 58px;
    left:0;
    right:0;
    top: 50px;
    animation: opacity 1s;
    z-index: 2;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(13 6 20 / 60%);
    background: url(../images/T_space.png);
    background-attachment: fixed;
    background-size: cover;
    border-radius: 25px;
    opacity: 0.6;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.75);
}

header img {
    margin: -35px 0;
    position: relative;
    z-index: 2;
}

header a#home {
    background:url(../images/T_home.png) no-repeat center;
}

header a#game {
    background:url(../images/T_games.png) no-repeat center;
}

header a#contact {
    background:url(../images/T_join.png) no-repeat center;
    margin-right: 15px;
}

header a{
    background-size: 100%!important;
    height: 100%;
    width: 40px;
    display: inline-block;
    float: right;
    position: relative;
    z-index: 2;
}

header div.separator {
    background: #372c43;
    height: 9px;
    width: 1px;
    display: inline-block;
    float: right;
    margin: 27px 9px;
}

/*******************************************************Section TOP*/

section#home_top img.banner {
    width: 100%;
    position: absolute;
    z-index: -100;
}

section#home_top h2 {
    text-align: center;
    padding: 280px 0 0 0;
    text-shadow: 1px 1px 13px rgba(0,0,0,0.36);
    font-size: 25px;
}

section#home_top h2 {
    text-align: center;
    padding: 280px 0 85px 0;
    text-shadow: 1px 1px 13px rgba(0,0,0,0.36);
    font-size: 25px;
}

section#home_top h1 {
    text-align: center;
    padding: 85px 0 0 0;
    text-shadow: 1px 1px 13px rgba(0,0,0,0.36);
    font-size: 45px;
}

section#home_top a {
    display: inline-block;
    padding: 18px 75px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    transition: background .25s;
    position: relative;
    z-index: 2;
}

section#home_top a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(13 6 20 / 60%);
    background: url(../images/T_space.png);
    background-attachment: fixed;
    display: inline-block;
    padding: 18px 75px;
    border-radius: 25px;
    font-weight: bold;
    transition: background .25s;
    border-radius: 25px;
    opacity: 0.6;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 25px -9px rgba(0,0,0,0.75);
}

section#home_top a span {
    position: relative;
    z-index: 2;
}

section#home_top a.discord_banner {
    background: rgb(69 80 207 / 60%);
    margin-left: 20px;
}

section#home_top a:hover {
    background: rgb(13 6 20 / 100%);
}

section#home_top a.discord_banner:hover {
    background: rgb(207 69 69);
}

section#home_top div.linkBox {
    margin: 0 auto;
    width: fit-content;
}

/*******************************************************Section GAME*/

div.gradientTransition {
    background: -moz-linear-gradient(0deg, rgba(13,5,21,1) 0%, rgba(13,5,21,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(13,5,21,1) 0%, rgba(13,5,21,0) 100%);
    background: linear-gradient(0deg, rgba(13,5,21,1) 0%, rgba(13,5,21,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0515",endColorstr="#0d0515",GradientType=1);
    
    background: url(../images/T_space.png) no-repeat;
    background-size: cover;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    background-attachment: fixed;
    height: 50vh;
    width: 100%;
}

section#games {
    background: rgb(13,5,21);
    background: url(../images/T_space.png) repeat;
    background-attachment: fixed;
    background-size: cover;
}

section#games div#card {
    width: calc(100% / 4 - 4px - (4 * 20px));
    display: inline-block;
    padding: 40px;
}

section#games div#card div.title{
    background: #37476e;
    opacity: 0;
    transition: opacity .25s, border-radius .25s;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    border-radius: 0 0 25px 25px;
}

section#games div#card:hover div.title {
    opacity: 1;
}

section#games div#card img {
    width: 100%;
    border-radius: 25px;
}

section#games div#card:hover img {
    border-radius: 25px 25px 0 0;
}

section#games a.buttonGames {
    background: #2f3285;
    display: table;
    padding: 18px 75px;
    border-radius: 25px;
    font-weight: bold;
    margin: 60px auto 160px;
    transition: background .25s;
}

section#games a.buttonGames:hover {
    background: rgb(207 69 69);
}

/*******************************************************Section CONTACT*/

section#contacts {
    background: #1a0f26;
    padding: 170px 0;
}

section#contacts h3 {
    font-size: 30px;
}

section#contacts p {
    color: #604e74;
    padding: 40px 0;
}

section#contacts input, section#contacts textarea {
    background: #2c1941;
    border-radius: 25px;
    padding: 16px;
    border: none;
    transition: background .25s;
}

section#contacts input:hover, section#contacts textarea:hover {
    background: #3d2657;
}

section#contacts input::placeholder, section#contacts textarea::placeholder {
    color: #7f61a0;
}

section#contacts textarea {
    width: 100%;
    height: 200px;
    max-width: 100%;
    min-width: 100%;
    overflow: hidden;
}

section#contacts input[type=mail] {
    width: 30%;
    margin: 0 20px 0 0;
    
}

section#contacts input[type=submit] {
    color: #fff;
    margin: 20px auto 0;
    display: block;
    padding: 16px 40px;
    cursor: pointer;
}

section#contacts input[type=text] {
    width: calc(70% - 25px);
    margin-bottom: 20px;
}

/*******************************************************Section FOOTER*/

footer {
}

footer p {
    float: right;
    color: #32273f;
    padding: 35px 0;
}

footer a {
    width: 25px;
    height: 25px;
    display: block;
    margin: 13px;
}

footer a#discord {
    background: url(../images/T_discord.png) no-repeat;
    background-size: 100%;
}

footer a#twitter {
    background: url(../images/T_x.png) no-repeat;
    background-size: 100%;
}

footer a#reddit {
    background: url(../images/T_reddit.png) no-repeat;
    background-size: 100%;
}

footer div.button {
    background: #1a0f26;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    float: left;
    margin: 20px 15px 20px 0;
    transition: background .25s;
}

footer div.button:hover {
    background: #311f45;
}

/*******************************************************Section CARD EFFECT*/


.container {
    width: calc(100% / 4 - 4px - (4 * 1%));
    float: left;
    padding: 2%;
}

.card{
    width: 100%;
    height: 100%;
}

.card img{
    border-radius: 25px;
    width: 100%;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
}

button.active {
    background: #585858;
    color: white;
}

.purchase {
    margin-top: 20px;
}

.purchase button {
    width: 100%;
    padding: 1rem 0rem;
    background: #f54642;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bolder;
    transition: all 0.75s ease-out;
    opacity: 0;
}

.container:hover .purchase button{
    opacity: 1;
}

/*******************************************************Section ageGate*/

.ageGateBackground {
    background: #0c0615;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
}

.ageGate {
    width: 100%;
    height: 100%;
    position: fixed;
    transform: translateY(0%);
    background: url(../images/T_space.png);
    background-attachment: fixed;
    background-size: cover;
    z-index: 100;
    transition: transform 2s;
}

.ageGateBackground.animateAgeGate, .ageGate.animateAgeGate {
    transform: translateY(-100%);
    transition: transform 2s;
}

.ageGate img {
    position: fixed;
    top: calc(50% - 47px - 100px);
    left: calc(50% - 71px);
    z-index: 101;
}

.ageGate .box{
    position: fixed;
    padding: 50px;
    background: #0c0615;
    border-radius: 25px;
    width: 500px;
    height: 200px;
    top: calc(50% - 100px);
    left: calc(50% - 250px);
    text-transform: uppercase;
    text-align:center;
    box-sizing: border-box;
}

.ageGate .box button {
    border: 1px solid #fff;
    border-radius: 25px;
    background: none;
    text-align: center;
    color: #fff;
    padding: 10px 30px;
    margin: 20px;
    transition: all .25s;
    cursor: pointer;
}

.ageGate .box button:hover {
    background:#fff;
    color:#0c0615;
}

/*******************************************************Section RESPONSIVE*/

@media only screen and (max-width: 1600px) {
    section#home_top img.banner {
        width: auto;
        left: calc(-1920px / 2 + 50%);
    }
    
    section#home_top a {
        display: block;
    }
    
    section#home_top a.discord_banner {
        margin: 20px 0 0 0;
    }
}

@media only screen and (max-width: 900px) {
    .container {
        width: 100%;
        float: left;
        padding: 0;
    }
}