@import url('https://fonts.googleapis.com/cs2?family=Poppins&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{

background: #050e2d;
}
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-thumb{
    background: #1aeeef;
    border-radius: 6px;
}
header{
    position: fixed;
    top:0 ;
    left: 0;
    width: 100%;
    padding: 7px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b211b;
    transition: 0.5s;
    z-index: 1000;

}
header.sticky{
   background: #1b2141;
   box-shadow: 0 5px 10px rgba(0,0,0,0.1) ;

}
header .logo{
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    font-weight: 700;
}

header .nav{
    display: flex;
    justify-content: center;
    align-items: center;

}

header ul li{
    list-style: none;
    margin: 10px;
}

header ul li a{
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;

}

header ul li a:hover{
    background: #1aeeef;
    color: #050e2d;
    box-shadow: 0 0 10px #1aeeef;
}

header .action .searchbox {
    padding: 5px;
    margin: 5px;
    display:flex;
    justify-content: center;
    align-items:center;
    background: #fff;
    border-radius: 5px;
}
header .action.searchbox i{
    font-size: 1.4em;
    margin: 5px;
    color: #222;
}

header .action .searchbox input{
    outline: none;
    border:none;
    font-size: 1em;
    color: #222;
}

.banner{
    position: relative;
    width:100%;
    min-height: 50vh;
    padding: 0px 100px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.banner .bg{
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .bg .content
{
    width: 50%;
    height: 100%;
}
.banner .bg .content h2 {
    font-size: 4em; 
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase; 
    text-shadow: 2px 2px 10px rgba(26, 238, 239, 0.5); 
    margin-bottom: 10px;
}

.banner .bg .content p {
    font-size: 1.2em; 
    color: #dbd9d9;
    max-width: 80%;
    font-style: italic;
    opacity: 0.9;
}

.banner .bg .content a{
    display: inline-block;
    padding: 10px 10px;
    margin: 20px 0;
    border: 1px solid #1aeeef;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.banner .bg .content a:hover{
    background: #1aeeef;
    border:none;
    color : #050e2d;

}

.banner .bg img {
    width : 500px;
    
}
/*about*/
.about{
    position: relative;
    width: 100%;
    min-height: 75vh ;
    padding : 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .contentbox{
    width: 50%;
    margin:20px;
}

.about .contentbox h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1aeeef; 
}

.about .contentbox p {
    font-size: 1.1em;
    line-height: 1.8; 
    margin-bottom: 15px;
    color: #dbd9d9;
    text-align: left; 
}

.about .contentbox a{
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid #1aeeef;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.about .contentbox a:hover{
    background: #1aeeef;
    border:none;
    color : #050e2d;
    box-shadow: 0 0  10px #1aeeef;

}
/*Games*/
.games{
    padding: 0px 100px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px auto;
}
.games h2{
    font-size: 3.5em; 
    font-weight: 700;
    color: #fff; 
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.games ul{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    margin-bottom: 20px;
}
.games ul li{
    list-style: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    color:#fff;
}

.games ul li.active{
    background: #1aeeef;
    color:#050e2d;
    box-shadow: 0 0 10px #1aeeef;
}

.games .cardbox{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.games .cardbox .card{
    width: 280px;
    border-radius: 10px;
    margin: 20px 40px;
    background: #1b2141;
    overflow: hidden;
}

.games .cardbox .card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.games .cardbox .card .content{
    padding : 10px;
}
.games .cardbox .card .content h4{
    color: #fff;
    margin:15px 0;
}
.games .cardbox .card .progress-line{
 position: relative;
 height: 10px;
 width: 100%;
 background: #35407e;
 margin-bottom: 15px;
 border-radius: 10px;
 transform: scaleX(0);
 transform-origin: left;
 animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}

.games .cardbox .card .progress-line span{
    position:absolute;
    height: 100%;
    width: 80%;
    border-radius: 10px;
    background: #1aeeef;
    box-shadow: 0 0 10p #1aeeef;
    transform-origin:left ;
    transform:scaleX(0) ;
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}

@keyframes animate{
    100%{
        transform: scaleX(1);
    }
}

.games .cardbox .card .info{
    border-top: 2px solid #35407e;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.games .cardbox .card .info p{
    font-size: 1em;
    color: #fff;
}

.games .cardbox .card .info p span{
    color :#1aeeef
}
.games .cardbox .card .info a{
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid #1aeeef;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.games .cardbox .card .info a:hover{
    background: #1aeeef;
    border:none;
    color : #050e2d;
    box-shadow: 0 0 10px #1aeeef;

}
.games .cardbox .card.hide{
    display: none;
}

.tournaments{
    padding: 0px 100px;
    width:100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tournaments h2{
   font-size: 3.5em; 
    font-weight: 700;
    color: #fff; 
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;

}

.tournaments .boxBx{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tournaments .boxBx .box{
    width: 350px;
    border-radius: 10px;
    margin: 20px 40px;
    background: #1b2141;
    overflow:hidden;
}

.tournaments .boxBx .box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tournaments .boxbx .box .content{
    padding :10px;
}

.tournaments .boxBx .box .content h4{
    color: #fff;
    margin-top: 15px;
}

.tournaments .boxBx .box .content h4 span{
 color: #1aeeef
}


.tournaments .boxBx .box .content p{
    text-align: justify;
    color: #dbd9d9;
    margin-top: 10px;

}
.tournaments .boxBx .box .content .btn {

    display: flex;
    justify-content: space-between;
}

.tournaments .boxBx .box .content .watch {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background:  #1aeeef;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #050e2d;
    letter-spacing: 1px;
    box-shadow : 0 0 10px #1aeeef;
}

.tournaments .boxBx .box .content .watch:hover{
    border: 1px solid #1aeeef;
    background:none;
    color : #fff;
    box-shadow: none;

}

.tournaments .boxBx .box .content .join {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid #1aeeef;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.tournaments .boxBx .box .content .join:hover{
    background: #1aeeef;
    border:none;
    color : #050e2d;
    box-shadow: 0 0 10px #1aeeef;

}

/*Contact*/

.contact{
    padding: 20px 100px;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact img{

    height: 20%;
    width: 20%;
    object-fit: cover;
    border-radius: 10px;

}
.contact .form{
    width: 50%;
    margin: 30px;

}

.contact .form h1{
    color: #fff;
}
.contact .form .inputBx
{
    margin: 10px 0;
}

.contact .form .inputBx p{
    color: #fff;

}

.contact .form .inputBx input,
.contact .form .inputBx textarea{
    border:none;
    outline: none;
    padding: 10px;
    width:100%;
    color:#fff;
    background:#1b2141;
    min-height: 15px;
    font-size:1.1em;
}

.contact .form .inputBx textarea{
    height: 150px;
}

.contact .form .inputBx input[type="submit"]{
    display: inline;
    padding: 10px 20px;
    margin: 15px 0;
    outline: none;
    background: transparent;
    border:1px solid #1aeeef;
    text-decoration:none;
    font-weight: 700;
    width: 150px;
    border-radius: 5px;
    color:#fff;
    letter-spacing: 1px;
}

.contact .form .inputBx input[type="submit"]:hover{
    background: #1aeeef;
    border: none;
    color : #050e2d;
    box-shadow: 0 0 10px #1aeeef;
}

/*footer*/

footer{
    padding: 10px 100px;

}

footer .info{

    display:flex;
    justify-content: space-between;
    align-items: center;
}

footer .info .logo{
    position:relative;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    font-weight:700;
}

footer .info p{
    color: #dbd9d9;

}

footer .info ul{
    margin:10px 0;
    display:flex;
    justify-content: center;
    align-items: center;
}

footer .info ul li{
    list-style:none;
    height: 50px;
    width: 50px;
    margin: 5px;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items:center;
    border: 1px solid #1aeeef;
}

footer .info ul li:hover{
    background: #1aeeef;
    border:none;
    box-shadow: 0 0 10px #1aeeef;
}

footer .info ul li a i{
    font-size:1.5em;
    color:#fff;
}

footer .info ul li:hover a i{
    color:#050e2d;
}


.games .cardbox .card {
    overflow: hidden; 
}

.games .cardbox .card img {
    transition: transform 0.5s ease;
}

.games .cardbox .card:hover img {
    transform: scale(1.1); 
}
.animeX {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 0.8s all ease; 
}

.animeX.active {
    transform: translateY(0px);
    opacity: 1;
}
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1b2141;
    padding: 30px;
    border: 1px solid #1aeeef;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    color: #fff;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #1aeeef;
}
/*Responsive navbar*/
@media(max-width: 991px) {
    header {
        padding: 15px 40px;
    }

   
    header .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1b2141;
        display: none; 
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 1000;
    }

    header .nav.active {
        display: flex;
    }

    header .nav li {
        margin: 15px 0;
    }

    .toggleMenu {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toggleMenu i {
        color: #fff;
        font-size: 24px;
    }

   
    .toggleMenu.active i::before {
        content: "\f00d"; 
    }
    .banner .bg img {

    position: absolute;
    }
    .banner .bg .content {
    width: 100%;
    height: 100%;
    background: rgb(27 33 65 / 50%);
    padding: 20px;
    z-index: 1;
    border-radius: 10px;
}
.about{
    flex-direction: column;
}
.about .contentbox {
    width: 100%;
 
}
.contact{
    flex-direction: column;
}
.contact .form {
    width: 100%;
    margin: 30px;
    padding: 30px;
}
.contact .form h1{
    text-align: center;
}
footer .info{
    flex-direction: column;
}
}