@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body{
    margin:0;
    height: 100%; 
    color:#FFFFFF;
    background: #050300;
    font-size:1.2em;
    font-family: "Poppins", sans-serif;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img{
    height: 100px;
}

.header .input-group {
    position: relative;
    width: 25vw;
}

.header .input-group .search-input{
    width: 25vw;
    position: absolute;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 17px;
    background: radial-gradient(#fa830545, #fa83056e);
    border-color: transparent;
    color: #FFF;
    border: none;
}

.header .input-group .search-input::placeholder,
.header .input-group .search-input::-ms-input-placeholder{
    color: #FFF;
}

.header .input-group .btn{
    position: relative;
    float: right;
    z-index: 2;
    border-color: transparent;
}

.category-list {
    background: linear-gradient(45deg, #fa84052e, #FB9E3C2e);
    padding: 10px;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: none;
    gap: 80px;
    margin: 10px 0 15px;
}

.nav {
    list-style: none;
}

.nav-link {
    color: #ffffff73;
    text-transform: uppercase;
    padding: 15px 0px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 12px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-link.active,
.nav-link:hover {
    color: #FFF;
}

.nav-link.active::after {
    content: '';
    height: 1.5px;
    width: 100%;
    background: linear-gradient(45deg, transparent, #FA8305, transparent);
    display: block;
}

.container {
    margin: auto;
    max-width: 80%;
}

.footer {
    background: linear-gradient(#120900ee, #120900ee), url(../section-bg.webp);
    background-position: center;
    margin-top: 40px;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .f-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer img{
    height: 100px;
}

.footer ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    gap: 25px;
    margin: 20px;
    padding: 0px;
}

.footer ul li a{
    color:#C7BEAD !important;
    text-decoration: none;
    font-size: 15px;
}

.footer .footer-content{
    background: #ff95002e;
    border-bottom: 1px solid #FF9500;
}

.footer .copiright-div {
    color: #FFF;
    padding: 25px 0;
    font-size: 18px;
}

.footer > .f-container{
    justify-content: center;
}

.footer .copiright-div span{
    color: #FF9500;
}

.footer .about-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}
.footer .about-container .section-title{
    display: inline-block;
    line-height: 40px;
}
.footer .about-container .section-title::after{
    content: '';
    height: 2px;
    width: 100%;
    background: linear-gradient(45deg, transparent, #FA8305, transparent);
    display: block;
}

.footer .about-container .section-details {
    font-size: 15px;
    color: #ffffff82;
}
.footer .about-container .section-img img {
    width: 380px;
    height: 210px;
    border-radius: 15px;
}

.about-div{
    padding: 20px 0;
}
.about-div .white-card{
    border: 2px solid #FF9500;
    border-radius: 20px;
    padding: 25px;
    color: #FFFFFFBB;
    font-size: 17px;
    letter-spacing: 1.3px;
    font-weight: 200;
    background: #0000005c;
}

.about-div .white-card a{
    color: #FF9500;
    text-decoration: none;
}

.about-div .white-card h3{
    color: #FFF;
}

.about-2 .section-data{
    text-align: right;
}

#game_list {
    display: flow-root;
}
.col {
    display: block;
    float: left;
    margin: 0;
    width: 100%;
}

.col:first-child {
    margin-left: 0;
}

.span_4_of_12 {
    width: 33%;
}
.span_3_of_12 {
    width: 25%;
}
.span_6_of_12 {
    width: 50%;
}
.span_5_of_12 {
    width: 41.66%;
}
.span_7_of_12 {
    width: 58.33%;
}
.box-gallery{
    padding: 10px;
    border-radius: 15px;
}

.box-gallery .box-content-gallery{
    position: relative;
    border-radius: 13px;
    border: 1.5px solid transparent;
    overflow: hidden;
}
.box-gallery .box-content-gallery .box-short-description-gallery{
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #000000f5, #0000007a, #00000000);
    width: calc(100% - 30px);
    transition: .5s ease;
    color: white;
    font-size: 14px;
    padding: 40px 15px 10px;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-gallery .box-content-gallery:hover{
    border: 1.5px solid #FF8200;
}

.btn-small{
    padding: 3px 14px !important;
    font-size: 10px !important;
    display: none;
}

.box-gallery .box-content-gallery:hover .btn-small{
    display: block;
}

#game_list img{
    width: 100%;
    border-radius: 15px;
    height: 250px;
    object-fit: cover;
}

.white-card-title {
    font-size: 25px;
    color: #FFF;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-detail {
    font-size: 14px;
    margin-bottom: 15px;
}

details summary h2{
    display: inline-block;
}

.game_title, .load-more-div {
    display: flex;
    justify-content: center;
}

.title{
    font-size: 25px;
    color: #FFF;
    font-weight: 500;
    padding: 10px;
}

.btn{
    background: linear-gradient(#FA8305, #FB9E3C);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 17px;
    color: #FFF;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s;
}

.btn:hover{
    background: linear-gradient(45deg, #FA8305, #FB9E3C);
}

.d-none {
    display: none;
}

@media only screen and (max-width: 1300px) {
    #game_list img{
        height: 220px;
    }
}

@media only screen and (max-width: 750px) {
    .span_4_of_12 {
        width: 50%;
    }
}

@media only screen and (max-width: 450px) {
    .category-list .container{
        max-width: 85%;
    }
    .nav-tabs {
        padding: 0;
        justify-content: normal;
    }
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .container {
        max-width: 95%;
    }
    .span_4_of_12, .span_3_of_12 {
        width: 50%;
    }
    #game_list img{
        height: 200px;
    }
    .about-div {
        padding: 20px;
    }
    .footer .about-container .section-title{
        display: block;
        text-align: center;
    }
    .footer ul {
        flex-direction: column;
        gap: 0;
    }
    .footer .about-container {
        flex-direction: column;
    }
    .footer .about-container .section-details {
        text-align: justify;
    }
    .footer .about-2 .section-img{
        order: 2;
    }
    .about-2 .section-data{
        text-align: left;
    }

    .header .input-group .search-input {
        width: 0;
        transition: all 1s;
    }

    .header .container.search-open .input-group{
        width: 100%;
        margin: 28px 0;
    }
    .header .container.search-open .logo{
        display: none;
    }
    .header .container.search-open .search-input{
        width: 100%;
        transition: all 1s;
    }
}