body{
    margin: 0;
    padding: 0;
}
/* Font style */
p{
    color: grey;
}
h3{
    margin: 0;
}
/* landing style */
.landing{
    width: 100%;
    height: 700px;
    background-image: url('../image/background1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.landing-container{
    height: 100%;
    background-color: rgba(3, 3, 3, 0.279);
    padding: 0 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.landing-container h2{
    color: aliceblue;
    margin-bottom: 60px;
}
.landing-container button{
    color: aliceblue;
    background: none;
    height: 60px;
    width: 40%;
    border: 1px solid white;
}
.landing-container button:hover{
    /* color: #7e1e00; */
    box-shadow: 0px 1px 7px 1px #e4e4e4;
}
.header{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* height: 200px; */
    padding: 10px 0;
}
.logo-image{
    width: 20%;
}
.logo-image img{
    width: 100%;
    object-fit: cover;
}
.pages-tabs{
    display: flex;
    gap: 20px;
    color: white;
    align-items: center;
}
.tab{
    cursor:pointer;
    color: white;
    text-decoration: none;
}
.tab:hover{
    color: aqua;
}
/* overview style */

.overview{
    background-color: #1a1a1a;
    color: white;
}
.main-overview{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.game-intros{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    padding-bottom: 82px;
}
.intro-detail{
    width: 25%;
    display: flex;
    /* align-items: center; */
    gap: 40px;
}
.intro{
    display: flex;
    flex-direction: column;
    
}
.intro-detail img{
    width: 33%;
    height: 32%;
    border: 3px solid;
    border-radius: 50%;
    padding: 6px;
}

/* Game-gatewary style */
.game-gateway{
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}
.game-viewport{
    width: 60%;
}
.game-viewport img{
    width: 100%;
    object-fit: cover;
}
.start{
    width: 20%;
    height: 40px;
    background: none;
    border: 1px solid white;
    color: white;
}
.start:hover{
    box-shadow: 0px 1px 7px 1px #e4e4e4;
}
/* company section style */
.company-intro{
    position:relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #000000af;
    background-image: url('../image/background6.jpg');
    background-size: cover;
    background-position: center;
}
.intro-image{
    position: absolute;
    height: 100%;
    /* width: 92%; */
    margin-left: -428px;
}
.intro-image img{
    height: 100%;
    object-fit: cover;
}
.co-introductions{
    background-color: #080b089c;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
}
.intro-block h2{
    color: #ba3a3a;
}
/* disclaimer & license style */
.disclaimer-license{
    text-align: center;
    padding: 30px 10%;
    background-color: #1a1a1a;
}
.disclaimer-license h2{
    color: #ba3a3a;
}
.cutoff{
    margin: 0;
    height: 3px;
    /* color: red; */
    background-color: #080b08;
    border: none;
}

/* badge style */
.badge-section{
    padding: 30px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #1a1a1a;
}
.badge{
    border-bottom: 2px solid;
    box-shadow: 2px 2px 10px -5px #cc4917;
    border-radius: 50%;
    padding: 0 10px;
}
.badge img{
    width: 100%;
    object-fit: cover;
}
/* contact us style */
.contact-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: azure;
    padding: 40px;
}
.contact-us form{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 15px;

}
form input{
    height: 40px;
}
textarea{
    height: 107px;
}
form * {
    background:none;
    border: 1px solid rgb(176, 176, 176);
    color: white;
    /* box-shadow: 1px 1px 1px 1px blue; */
}
form button{
    padding: 15px;
}
form button:hover{
    box-shadow: 0px 1px 7px 1px #e4e4e4;
}
/* footer style */
.footer{
    display: flex;
    flex-direction: row;
    padding: 40px 0;
    background-color: black;
}

.footer-links{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 20%;
    padding: 0 30px;
    gap:20px;
    color: #7e1e00;
}
.footer-links a{
    border-left: 1px solid #7e1e00;
    padding-left: 10px;
    cursor: pointer;
    text-decoration: none;
    color: #7e1e00;
}
.footer-links a:hover{
    color: #ffd4c6;
    border-left: 1px solid #ffd4c6;
}
.footer-disclaimer{
    text-align: center;
}
.underline{
    margin: 0 auto;
    height: 1px;
    background-color: white;
    width: 50px;
}
.copywrite{
    color: white;
}

@media only screen and (max-width:850px){
    .game-intros{
        flex-direction: column;
        padding-left: 10%;
    }
    .intro-detail{
        width: 100%;
    }
    .intro-detail img{
        width: 7%;
    }
    .co-introductions{
        width: 100%;
    }
    .contact-us form{
        width:80%
    }
    .footer{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-links{
        flex-direction: row;
    }
    .header{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* Terms page */
.content{
    background-color: #111016;
    padding: 40px 10%;
}
.content-block{

}
.content-block h2{
    color: #7e1e00;
}
.content-block p, ul{
    color: white;
}
.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}