*::-webkit-scrollbar {
    width: 0px;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: transparent;
}
html, body {
    font-family: Nunito, sans-serif;
    background: #010103;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
#stars {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}
.nav-link {
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    border-radius: 15px;
    padding: 10px 16px;
    color: #a8a8a8;
    cursor: default;
    font-size: 17px;
}
.nav-link:hover {
    color: white;
}
.Download {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    text-decoration: none;
    border-radius: 11px;
    align-items: center;
    padding: 7px 10px;
    font-weight: 500;
    color: #eaeaea;
    cursor: default;
    display: flex;
    gap: 10px;
}
.Download:hover {
    transform: scale(1.025);
}
.Download img {
    width: 22px;
    height: 22px;
}
.Discord {
    text-decoration: none;
    cursor: default;
    display: flex;
    padding: 0;
}
.Discord img {
    width: 30px;
    height: 30px;
}
.nav-link.disabled {
    pointer-events: none;
    color: #686767;
}
#body {
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.row {
    display: flex;
    align-items: center;
    gap: 2px;
}
.image-inline {
    height: 192px;
    width: auto;
}
.text-inline {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica;
    font-size: 168px;
    font-weight: 700;
    user-select: none;
}
.tagline {
    font-size: 19px;
    color: #b3b3b3;
    max-width: 500px;
    margin-top: -16px;
    font-weight: 400;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    color: #ffffff;
    padding: 11px 20px;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.download-btn img {
    height: 21px;
    transition: transform 0.3s ease;
}
.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    color: #f0f0f0;
    transform: translateY(-3px) scale(1.05);
}
.download-btn:hover img {
    transform: scale(1.2);
}

/* NAVBAR */
#nav_bar {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
    backdrop-filter: blur(25px);
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 7px 20px;
    user-select: none;
    position: fixed;
    display: flex;
    top: 20px;
    left: 50%;
    gap: 20px;
}
.nav_desktop {
    display: flex
}
.nav_right {
    align-items: center;
    display: flex;
    gap: 10px
}
.hamburger-menu {
    display: none;
    position: relative
}
#mobile_dropdown {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px) !important;
    top: calc(100% + 5px);
    border-radius: 15px;
    position: absolute;
    overflow: hidden;
    min-width: 100%;
    display: none
}
#mobile_dropdown.show {
    flex-direction: column;
    display: flex
}
#mobile_dropdown a {
    padding: 11px 20px;
    text-decoration: none;
    color: #a8a8a8;
    font-size: 16px;
    transition: color 0.3s ease, background-color 0.3s ease;
}
#mobile_dropdown a:hover {
    color: white;
}
#hamburger-btn {
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    
    gap: 4px;
}
#hamburger-btn span {
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    background-color: #eaeaea;
    border-radius: 3px;
    display: block;
    height: 2.2px;
    width: 20px;
}
#hamburger-btn.active span:nth-child(1) {
    transform: translateY(6.2px) rotate(45deg);
}
#hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
#hamburger-btn.active span:nth-child(3) {
    transform: translateY(-6.2px) rotate(-45deg);
}
/* @MEDIA */
@media (max-width: 768px) {
    .nav_desktop {
        display: none
    }
    .nav_right {
        gap: 15px;
    }
    #nav_bar {
        top: 15px;
        padding: 9.5px 21px;
    }
    .hamburger-menu {
        display: flex;
        align-items: center;
    }
    #hamburger-btn {
        padding: 6px;
    }
    #mobile_dropdown {
        top: calc(100% + 5px);
    }

    .image-inline {
        height: 100px; 
    }
    .text-inline {
        font-size: 84px; 
    }
}