@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body{
    font-family: "roboto", sans-serif;
    font-weight: 300;
    line-height: 1.4;
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    position: fixed;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100px;
}
.hlogo{
    display: flex;
    align-items: center;
}
.hlogo img{
    width: 12vw;
    max-width: 80px;
    border-radius: 50%;
}
.hlogo h1{
    color: #fff;
    font-size: 3vw;
}
nav{
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border: 1px solid #615f5f;
    border-radius: 100px;
    background-color: #ffffff14;
    transition: right .3s;
}
nav a {
    text-decoration: none;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
}

/* header hover */
nav a:hover{
    background-color: rgb(90, 89, 89);
}
#toggleBtn{
    display: block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    aspect-ratio: 1/1;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all .3s;
    cursor: pointer;
    display: none;
}
#toggleBtn:hover{
    border-color: rgba(255, 255, 255, .8);
}
#toggleBtn:active{
    transform: scale(.95);
}

/* main  */

main{
    max-width: 100%;
    padding: 200px 10px;
    background-color: rgb(15, 15, 15);
    color: white;
}
main .heading{
    font-size: 4vw;
    text-align: center;
}
.games{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    cursor: pointer;
}
.game_icons{
    background-color:  #1f1e1e;
    border: 1px solid rgba(243, 242, 242, 0.1);
    border-radius: 10px;
    overflow: hidden;
    min-width: 250px;
    max-width: 400px;
    width: 100%;
    color: #fff;
}
.game_info{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding:15px ;
}
.game_info h3{
    font-size: 20px;
}
.game_info p{
    display: flex;
    gap: 10px;
    color: #d8d1d1;
}
.game_info p i{
    color: rgb(74, 158, 74);
}
.info{
    display: flex;
    justify-content: space-between;
}
.info div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.info .bolt i{
    color: rgb(199, 199, 37);
}
.info .eye i{
    color: rgb(73, 149, 248);
}
.button{
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: rgb(10, 104, 228);
    border: 1px solid rgba(243, 242, 242, 0.3);
    border-radius: 5px;
}
.button a{
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    
}
/* button hover */
.button:hover{
     background-color: rgb(0, 91, 209);
     transition: 0.2s ease-in-out;
}
/* Footer */
.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background-color: #030712;
    line-height: 2.5;
    font-size: 16px;
    font-weight: 500;
    color: #9ca3af;
}
.footer a{
    color: #9ca3af;
}
.footer div p{
    font-size: 14px;
}
.terms{
    display: flex;
    gap: 15px;
}
/* footer hover */
.footer .terms a:hover{
    color: #fff;
    transition: 0.2s ease-in-out;
}
.footer div a i:hover{
    color: rgb(0, 91, 209);
}
@media only screen and (max-width: 1000px) {
    nav{
        position: fixed;
        right: -100%;
        top: 100px;
        height: calc(100vh - 100px);
        width: 100%;
        flex-direction: column;
        border-radius: 0;
        z-index: 9999;
        background-color: rgba(0, 0, 0, 0.9);
    }
    nav a{
        width: 100%;
    }
    nav ul{
        flex-direction: column;
    }
    #toggleBtn{
        display: block;
    }
}