/* COPYRIGHT 2024 CHARGE-DEV ALL RIGHTS RESERVED */

/* FONTS */

@font-face {
    font-family: Logo;
    src: url(./assets/fonts/GeistMono-Regular.ttf);
}

@font-face {
    font-family: LexendRegular;
    src: url(./assets/fonts/Lexend-Regular.ttf);
}

@font-face {
    font-family: LexendLight;
    src: url(./assets/fonts/Lexend-Light.ttf);
}

@font-face {
    font-family: LexendExtraLight;
    src: url(./assets/fonts/Lexend-ExtraLight.ttf);
}

/* PAGE */

* {
    border: none;
    text-decoration: none;
    outline: none;
    user-select: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: #151516;
    display: flex;
    justify-content: center;
}

body:before {
    display: block;
    background-image: url(./assets/images/noise.webp);
    background-size: 257px auto;
    background-repeat: repeat;
    opacity: 0.12;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    content: "";
}

:-webkit-scrollbar {
    display: none;
}

.secondary-button {
    background: rgba(225, 225, 225, 0.06);
    border: 1px solid rgba(225, 225, 225, .03);
    box-shadow:
        inset 0 1px 1px 0 rgba(255, 255, 255, 0.12),
        0 0 3px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 6px 20px 6px 20px;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: LexendLight;
    font-size: 14px;
    color: #c4c4c4;
    cursor: pointer;
    transition: all .3s ease;
}

.secondary-button:hover {
    background: rgba(225, 225, 225, 0.15);
    color: #e5e5e5;
}

.secondary-button:active {
    background: rgba(225, 225, 225, 0.20);
    color: #e5e5e5;
    box-shadow:
        inset 0 1px 1px 0 rgba(255, 255, 255, 0),
        0 0 3px rgba(0, 0, 0, 0);
    transform: scale(0.98);
}

.notfound {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 998;
    pointer-events: none;
    transition: all 0.3s ease;
}

.notfound.active {
    background-color: rgba(9, 9, 9, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.notfound-modal {
    background: #1c1c1f;
    border: 1px solid #262627;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.7);
    opacity: 0;
    max-width: 340px;
    min-width: 340px;
    width: 100%;
    padding: 15px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
    pointer-events: none;
}

.notfound-modal.active {
    pointer-events: all;
    animation: notfound-modal-reveal 1s ease forwards;
}

.notfound-modal.deactivated {
    opacity: 1;
    pointer-events: none;
    cursor: default;
    animation: notfound-modal-hide 0.6s ease forwards;
}

@keyframes notfound-modal-hide {
    0% {
        transform: scale(1);
    }

    45% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(0.98);
    }

    100% {
        opacity: 0;
        filter: blur(17px);
        transform: scale(1.1);
    }
}

@keyframes notfound-modal-reveal {
    0% {
        opacity: 0;
        filter: blur(17px);
        transform: scale(1.1);
    }

    45% {
        transform: scale(0.98);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
    }
}

.nm-title {
    font-family: LexendExtraLight;
    font-size: 22px;
    color: #e5e5e5;
    margin: 0 0 5px 0;
    animation: nm-title-reveal 1s 0.1s ease forwards;
}

@keyframes nm-title-reveal {
    0% {
        transform: translateY(75px);
    }

    55% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.nm-message {
    font-family: LexendLight;
    font-size: 16px;
    color: #c4c4c4;
    margin: 0 0 15px 0;
    animation: nm-message-reveal 1s 0.15s ease forwards;
}

@keyframes nm-message-reveal {
    0% {
        transform: translateY(75px);
    }

    55% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.nm-buttons {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    animation: nm-buttons-reveal 1s 0.2s ease forwards;
}

@keyframes nm-buttons-reveal {
    0% {
        transform: translateY(75px);
    }

    55% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.navbar-wrapper {
    width: 100%;
    position: fixed;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    z-index: 99;
}

.navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.038) 100%);
    border: 1px solid rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(10px);
    width: 50%;
    height: 50px;
    position: fixed;
    display: flex;
    border-radius: 15px;
}

.nb-branding {
    width: 20%;
    display: flex;
    padding-left: 20px;
    align-items: center;
}

.nbb-text {
    font: 22px Logo;
    color: #e5e5e5;
    transition: all 0.3s ease;
}

.nbl-text:active {
    transform: scale(0.98);
}

.nb-links {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nbl-button {
    background-color: transparent;
    padding: 6px 12px;
    color: #c4c4c4;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nbl-button:hover {
    background: rgba(225, 225, 225, 0.15);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
}

.nbl-button:active {
    background: rgba(225, 225, 225, 0.20);
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0);
    transform: scale(0.98);
}

.nbl-active {
    background: rgba(225, 225, 225, 0.20);
    color: #e5e5e5;
}

.nb-blank {
    width: 20%;
}

.mobile-navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.038) 100%);
    border: 1px solid rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(10px);
    width: 75%;
    height: 50px;
    position: fixed;
    overflow: hidden;
    display: none;
    border-radius: 15px;
    z-index: 99;
}

.mobile-navbar.active {
    animation: navbar-menu-reveal 1s ease forwards;
}

@keyframes navbar-menu-reveal {
    0% {
        height: 50px;
    }

    20% {
        height: 45px;
        transform: scale(0.97);
        filter: blur(0px);
    }

    50% {
        filter: blur(1px);
        transform: translateY(3px);
    }

    60% {
        height: 228px;
    }

    100% {
        height: 218px;
        transform: scale(1);
        transform: translateY(0px);
        filter: blur(0px);
    }
}

.mobile-navbar.deactivated {
    animation: navbar-menu-hide 1s ease forwards;
}

@keyframes navbar-menu-hide {
    0% {
        height: 218px;
        filter: blur(0px);
    }

    20% {
        height: 224px;
        filter: blur(0px);
        transform: translateY(0px);
    }

    50% {
        filter: blur(1px);
        transform: translateY(-2px);
    }

    60% {
        height: 40px;
    }

    100% {
        height: 50px;
        transform: translateY(0px);
        filter: blur(0px);
    }
}

.mn-content {
    height: 50px;
    display: flex;
}

.mnb-branding {
    width: 50%;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.mnbb-text {
    font: 22px Logo;
    color: #e5e5e5;
    transition: all 0.3s ease;
}

.mnbl-text:active {
    transform: scale(0.98);
}

.mnbl-active {
    background: rgba(225, 225, 225, 0.20);
    color: #e5e5e5;
}

.mnb-menu {
    width: 50%;
    padding-right: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.mnbm-button {
    display: flex;
    background-color: transparent;
}

.mnbmb-icon {
    width: 30px;
    transition: all 0.3s ease;
}

.mnbmb-icon:active {
    transform: scale(0.9);
}

.mn-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mnl-button-wrapper {
    width: 100%;
}

.mnl-a {
    width: 100%;
    display: flex;
}

.mnl-button {
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 10px 0 10px 20px;
    color: #c4c4c4;
    font-size: 18px;
    cursor: pointer;
    text-align: start;
    transition: all 0.3s ease;
}

.mnl-button:hover {
    background: rgba(225, 225, 225, 0.15);
    color: #e5e5e5;
}

.mnl-active {
    background: rgba(225, 225, 225, 0.15);
    color: #e5e5e5;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(225, 225, 225, 0.1);
}

.home {
    width: 60%;
    height: 100%;
}

.home-hero {
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hh-content {
    min-width: 300px;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hhc-title {
    margin: 0 0 5px;
    font: 400 52px LexendRegular;
    letter-spacing: -1px;
    color: #e5e5e5;
    opacity: 0;
    animation: hhc-title-reveal 1.5s 0.2s ease forwards;
}

@keyframes hhc-title-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(17px);
    }

    55% {
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        filter: blur(0px);
    }
}

.hhc-subtitle {
    margin: 0 0 10px;
    font: 200 30px LexendExtraLight;
    color: #c4c4c4;
    opacity: 0;
    animation: hhc-subtitle-reveal 1.5s 0.4s ease forwards;
}

@keyframes hhc-subtitle-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(17px);
    }

    55% {
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        filter: blur(0px);
    }
}

.hhc-socials {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: hhc-socials-reveal 1.5s 0.6s ease forwards;
}

@keyframes hhc-socials-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(17px);
    }

    55% {
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        filter: blur(0px);
    }
}

.hhcs-button {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(225, 225, 225, .1);
    border-radius: 50%;
    background: #e1e1e103;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hhcs-button:hover {
    border: 1px solid rgba(225, 225, 225, .2);
}

.hhcs-button:active {
    border: 1px solid rgba(225, 225, 225, .3);
    background: #e1e1e10d;
    transform: scale(0.98);
}

.hhcsb-icon {
    width: 25px;
    height: 25px;
}

/* FOOTER */

.footer {
    width: 100%;
    height: 50px;
    border-top: 1px solid rgba(225, 225, 225, 0.1);
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgba(225, 225, 225, 0.01);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.footer-barrier {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fb-info {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.fbi-text {
    font: 14px LexendLight;
    color: #c4c4c4;
}

.fbi-text-span {
    font: 200 14px LexendLight;
    color: #c4c4c4;
    cursor: pointer;
    transition: all .3s ease;
}

.fbi-text-span:hover {
    color: #e5e5e5;
}

.fbi-text-span:active {
    color: #c4c4c4;
}

.fb-links {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.fbl-link {
    font: 200 14px LexendLight;
    color: #c4c4c4;
    cursor: pointer;
    transition: all .3s ease;
}

.fbl-link:hover {
    color: #e5e5e5;
}

.fbl-link:active {
    color: #c4c4c4;
}

@media screen and (max-width: 1440px) {

    .navbar {
        width: 75%;
    }

    .home-hero {
        margin-top: 20%;
    }

}

@media screen and (max-width: 820px) {

    .navbar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }

    .home {
        width: 80%;
    }

    .home-hero {
        margin-top: 30%;
    }

    .footer-barrier {
        width: 80%;
    }

}