@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Bebas+Neue&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');

@font-face {
    font-family: 'Panton Demo Black';
    src: url('../../assets/PantonDemoBlack.otf');
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #080808;
    color: #fff;
}

a{
    color: #fff;
    text-decoration: none;
}
ul{
    list-style-type: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

.container{
    max-width: 1810px !important;
    width: 100%;
    margin: 0 auto;
}
.btnPrimary{
    background: #1593EE;
    box-shadow: 0px 0px 5px 2px rgba(21, 147, 238, 0.6);
    border: 0;
    padding: .9375rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-left: auto;
}
.btnPrimary:hover{
    opacity: 0.8;
}
.smallTitle{
    font-size: .75rem;
    color: #C1C1C1;
}
.largeTitle{
    font-family: 'Panton Demo Black', sans-serif;
    font-size: 1.875rem;
}
.error{
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 3.4375rem;
    width: 100%;
    text-align: center;
}
.errorTitle{
    text-align: center;
    font-size: 30px;
}
.error p{
    color: #787878;
    font-size: .875rem;
}
.error a{
    font-size: .875rem;
    color: #1C5BFE;
}

/* NAVBAR */
.navbar{
    background: #000;
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.4375rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.navbar .logo{
    height: 65px;
}
.navbar ul{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.1875rem;
    align-items: center;
}
.menuIcon{
    display: none !important;
}
.profile{
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
.profile .username{
    font-size: 1rem;
    font-weight: 600;
}
.profileUser{
    display: none;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.logout{
    cursor: pointer;
}
.navLink.off{
    display: none;
}

/* HOME */
.home{
    position: relative;
    width: 100%;
    height: auto;
}
.banner{
    height: auto;
    display: block;
    width: 100%;
}
.homeText{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}
.homeText h3{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.75rem;
}
.homeText p{
    font-size: 1.125rem;
    color: #CBCBCB;
    margin-bottom: 1.5625rem;
}
.homeText .btnPrimary{
    font-size: 1rem;
}
.bestMember{
    position: relative;
    padding-top: 3.4375rem;
}
.cardContainer{
    position: relative;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.cardBox{
    background: #0A0A0A;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
    width: 300px;
    padding: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.cardText small{
    font-size: .75rem;
    color: #C1C1C1;
}
.cardText h5{
    font-size: 2.5rem;
    font-family: 'Panton Demo Black', sans-serif;
}
.cardBox img{
    margin: 0 auto;
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 50%;
}
.cardBox .username{
    font-size: 1.25rem;
    font-weight: 400;
}

.bestTitle{
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.bestTitle span{
    margin: 0 auto;
    font-family: 'Panton Demo Black', sans-serif;
    font-size: 8.75rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #656565;
}

.about{
    padding-top: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.aboutContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
}
.aboutTop, 
.aboutBottom{
    display: flex;
    align-items: center;
    gap: 20px;
}
.aboutBottom{
    margin-left: 100px;
}
.aboutText p{
    font-size: 1rem;
    color: #787878;
    max-width: 800px;
    width: 100%;
    text-align: justify;
    margin-top: 20px;
}
.aboutBox{
    max-width: 200px;
    width: 100%;
    background: #0A0A0A;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
}
.iconAbout{
    background: #0C0C0C;
    padding: 1.25rem;
    border-radius: 50%;
}
.aboutBox span{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    text-align: center;
    max-width: 150px;
    width: 100%;
}

.faq{
    padding-top: 55px;
}
.faqContainer{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    margin-top: 1.25rem;
    row-gap: 30px;
}
details{
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    background: #0A0A0A;
    border-radius: 12px;
    max-width: calc(50% - 40px);
    width: 100%;
    position: relative;
}
summary{
    user-select: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 1.25rem 1.875rem;
    align-items: center;
}
summary:hover .faqTitle{
    transform: translateX(5px);
}
.faqTitle{
    transition: 300ms ease;
}
.expandIcon{
    font-size: 1.5625rem;
    color: #1593EE;
    transition: transform 300ms;
}
.expandIcon.icon{
    transform: rotate(90deg);
}
.faqContent{
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
    color: #C1C1C1;
    padding: 0 1.875rem 1.25rem;
    max-height: 450px;
    display: hidden;
}
.faqContent.active{
    display: block;
}

footer{
    padding-top: 3.4375rem;
}
footer hr{
    border: 0;
    height: 1px;
    background: #1A1A1A;
}
footer p{
    font-size: 1.125rem;
    color: #636363;
    text-align: center;
    padding: 2.1875rem;
}

@media (max-width: 1890px){
    .container{
        width: 90%;
        margin: 0 auto;
    }
}
@media (max-width: 850px){
    .logo{
        display: none;
    }
    header{
        position: relative;
    }
    .navbar ul{
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        background: #141414;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 65px 20px;
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
        z-index: 3;
    }
    .navbar ul.active{
        left: 50%;
    }
    .menuIcon{
        display: block !important;
        z-index: 3;
        font-size: 1.875rem;
    }
    .menuIcon.bx-x{
        position: absolute;
        top: 25px;
        right: 20px;
    }
    .navbar .btnPrimary{
        margin-left: 0;
    }

    .homeText h3{
        font-size: 2.5rem;
    }
    .homeText p{
        font-size: 1rem;
        margin-bottom: .9375rem;
    }
    .homeText .btnPrimary{
        font-size: .875rem;
        padding: .625rem .9375rem;
    }
}
@media (max-width: 900px){
    .about{
        flex-direction: column;
        gap: 30px;
    }
    .aboutBottom{
        margin-left: 0;
    }
    details{
        max-width: 100%;
    }
}
@media (max-width: 800px){
    .cardContainer{
        flex-direction: column;
    }
    .cardBox{
        width: 100%;
    }

}
@media (max-width: 700px){
    .home, .bestTitle{
        display: none;
    }

}