@import url('https://fonts.googleapis.com/css2? family= Poppins:wght@400;500;600;700 & display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

    scroll-behavior: smooth;
}
body{
    background: black;
    scrollbar-width: none; /* For Firefox */
    color: var(--text-color);
    
}



/* Variable */
:root{
    --main-color: #47E10C;
    --dark-color: #1b182b;
    --light-color: #322f40;
    --text-color: hsl(0,0%,91);
}
::selection{
    color: var(--text-color);
    background: var(--main-color);
}

/* Scroll Bar */
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 6px;
}
::-webkit-scrollbar-track{
    border-radius: 6px;
    background: #f2f2f2;
    }



.logo-img{
    width: 50px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 7px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    z-index: 1000;
}
header.sticky{
    background: #1b2141;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
header .logo{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    margin: 0 auto 0 0;
}
header .logo span{
    color: var(--main-color)
}

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: var(--main-color);
    color: #050e2d;
    box-shadow: 0 0 10px var(--main-color);
}

header .action .searchBx{
    padding: 5px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 5px;
}
header .action .searchBx{
    font-size: 1.4rem;
    margin: 5px;
    color: #222;
}
header .action .searchBx input{
    outline: none;
    border: none;
    font-size: 1em;
    color: #222;
}


/* Home Banner */

.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: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.banner .bg .content{
    width: 50%;
    height: 100%;
}
.banner .bg .content h2{
    font-size: 4em;
    color: #fff;
    letter-spacing: 1px;
}
.banner .bg .content p{
    font-size: 1em;
    color: #dbd9d9;
    letter-spacing: 1px;
}
.banner .bg .content a{
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid var(--main-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}
.banner .bg .content a:hover{
    background: var(--main-color);
    border: none;
    color: #050e2d;
    box-shadow: 0 0 10px var(--main-color);
}
.banner .bg img{
    width: 600px;
}

/* about */
.about{
    position: relative;
    width: 100%;
    min-height: 75vh;
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .contentBx{
    width: 50%;
    margin: 20px;
}
.about .contentBx h2{
    font-size: 3em;
    font-weight: 700;
    color: #fff;
}
.about .contentBx p{
    max-width: 600px;
    text-align: justify;
    color: #dbd9d9;
}
.about .contentBx a{
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    border: 1px solid var(--main-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}
.about .contentBx a:hover{
    background: var(--main-color);
    border: none;
    color: #050e2d;
    box-shadow: 0 0 10px var(--main-color);
}

/* 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{
    color: #fff;
    margin: 10px 0;
}
.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: var(--main-color);
    color: #050e2d;
    box-shadow: 0 0 10px var(--main-color);
}
.games .cardBx{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.games .cardBx .card{
    width: 280px;
    border-radius: 10px;
    margin: 20px 40px;
    background: #1b2141;
    overflow: hidden;
}
.games .cardBx .card img{
    width: 100%;
    height: 250px;
    object-fit: fill;
    
}


game1{
    opacity: 0;
}

.games .cardBx .card .content{
    padding: 10px;
}

.games .cardBx .card .content h4{
    color: #fff;
    margin: 15px 0;    
}
.games .cardBx .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 .cardBx .card .progress-line span{
    position: absolute;
    height: 100%;
    width: 80%;
    border-radius: 10px;
    background: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}
@keyframes animate{
    100%{
        transform: scaleX(1);
    }
}
.games .cardBx .card .info{
    border-top: 2px solid #35407e;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.games .cardBx .card .info p{
    font-size: 1em;
    color: #fff;
}
.games .cardBx .card .info p span{
    color: var(--main-color);
}
.games .cardBx .card .info a{
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid var(--main-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}
.games .cardBx .card .info a:hover{
    background: var(--main-color);
    border: none;
    color: #050e2d;
    box-shadow: 0 0 10px var(--main-color);
}
.games .cardBx .card.hide{
    display: none;
}

/* Tournaments */

.tournaments{
    padding: 0px 100px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tournaments h2{
    color: #fff;
    margin: 10px 0;
}
.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;
}
.cardBx .card .content{
    padding: 10px;
}
.cardBx .card .content h4{
    color: #fff;
    margin-top: 15px;
}
.cardBx .card .content h4 span{
    color: var(--main-color);
}
.cardBx .card .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: var(--main-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #050e2d;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--main-color);
}
.tournaments .boxBx .box .content .watch:hover{
    border: 1px solid var(--main-color);
    background: none;
    color: #fff;
    box-shadow: none;
}
.tournaments .boxBx .box .content .join{
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid var(--main-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
}
.tournaments .boxBx .box .content .join:hover{
    background: var(--main-color);
    border: none;
    color: #050e2d;
    box-shadow: 0 0 10px var(--main-color);
}

/* footer */
footer{
    padding-right: 100px;
    padding-left: 100px;
    padding-bottom: 0px;

}
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 var(--main-color);
}
footer .info ul li:hover{
    background: var(--main-color);
    border: none;
    box-shadow: 0 0 10px var(--main-color);
}
footer .info ul li a i{
    font-size: 1.5em;
    color: #fff;
}
footer .info ul li:hover a i{
    color: #050e2d;
}
.animeX{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}
.animeX.active{
    transform: translateY(0px);
    opacity: 1;
}


/* Responsive Design */

@media(max-width: 991px){
    header {
        padding: 15px 40px;
    }
    header .nav{
        position: fixed;
        top: 0;
        left:0;
        right:0;
        bottom:0;
        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:20px 0;
    }
    header .nav li a{
        font-size: 24px;
        margin: 10px 0;
    }
    .toggleMenu{
        position: relative;
        width: 30px;
        height: 30px;
        background: url(/menu.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 1001;
    }
    .toggleMenu.active{
        background: url(/cierre.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
    }
    .banner .bg img{
        display: none;
    }
    .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 .contentBx{
        width: 100%;
    }

    footer .info{
        flex-direction: column;
    }
}

@media(max-width: 560px){
    .games .cardBx{
    width:400px;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    }
}
@media(max-width: 475px){
    .banner .bg .content h2 {
        font-size: 2.5em;
        color: #fff;
        letter-spacing: 1px;
    }
}

h2.separador{
    border-bottom: 4px solid var(--main-color);
}

/* GIFS */

