* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppings', sans-serif;
}

body {
    --color-background: #ffffffff;
    --color-navbar: #f7f7f8;
    --color-primary-text: rgb(0, 0, 0);
    --color-secondary-text: #636363;
    --color-primary-button: #ffffffff;
    --color-primary-button-hover: #adadad;
    --color-primary-panel: #F3F3F3;
    --color-secondary-panel: #b6b6b6;

    height: 100vh;
    background-color: var(--color-background);
    background-size: cover;
    background-position: center;
}

.darkmode {
    --color-background: #2c2f31;
    --color-navbar: rgba(0, 0, 0, 0.438);
    --color-primary-text: #ffffffff;
    --color-secondary-text: #a5a5a5;
    --color-primary-button: transparent;
    --color-primary-button-hover: #353535;
    --color-primary-panel: #3f3f3f;
    --color-secondary-panel: #1e1e1e;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-primary-text);
    font-weight: normal;
    font-size: 1.3rem;
}

a:hover {
    color: #63C7B2;
}

header {
    position: relative;
    padding: 0 2rem;
    background-color: var(--color-navbar);
}

.navbar {
    width: 100%;
    max-width: 1920px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    margin: 0 auto;
    margin-top: 5px;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.icon {
    color: var(--color-primary-text);
    vertical-align: middle;
}

.store {
    display: inline-flex;
    align-items: center;
}

.navbar .burger-menu-button {
    color: var(--color-primary-text);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.buttons {
    display: flex;
    gap: 10px;
}

.action-button {
    background-color: #63c7b2;
    color: #232527;
    border: 1px solid #63c7b2;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    outline: none;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-button {
    color: var(--color-primary-text);
    padding: 0.5rem 1.2rem;
    outline: none;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
}

.profile-icon {
    border-radius: 75%;
    outline: none;
    display: inline-block;
}

.profile-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.profile-coins:hover {
    color: #ffffff;
}

.profile-burger {
    display: flex;
    gap: 10px;
}

.parameters-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.parameters-icon {
    cursor: pointer;
    font-size: 18px;
    position: relative;
    margin-right: 10px;
}

.parameters-icon span {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff5722;
    color: white;
    border-radius: 50%;
    padding: 5px 8px;
    font-size: 12px;
}

.parameters {
    opacity: 0;
    transition: opacity 0.1s linear;
    position: fixed;
    min-height: fit-content;
    max-height: fit-content;
    top: 3.7rem;
    right: 0.5rem;
    width: 200px;
    color: var(--color-primary-text);
    background-color: var(--color-secondary-panel);
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow-y: auto;
    pointer-events: none;
    z-index: 1010;
}

.parameters.open {
    opacity: 1;
    pointer-events: auto;
}

.parameters button {
    background-color: transparent;
    color: var(--color-primary-text);
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

.parameters button:hover {
    background-color: var(--color-primary-button-hover);
}

.signup {
    background-color: var(--color-primary-button);
    color: var(--color-primary-text);
    border: 1px solid #ffffffff;
}

.signup:hover {
    background-color: var(--color-primary-button);
    color: rgb(214, 214, 214);
}

.signin:hover {
    background-color: #7ee0cb;
    color: #120d31;
}

.button--hidden {
    display: none;
}

.burger-menu {
    display: none;
    height: 0;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.divider {
    height: 1px;
    background-color: #ffffffff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.burger-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-menu .action-button {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons-burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.top-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bottom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.open {
    height: 395px;
}

.down {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bottom {
    left: 0;
    bottom: 0px;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.discord {
    position: fixed;
    right: 1px;
    bottom: 0px;
    width: 75px;
    z-index: 1008;
    height: auto;
    cursor: pointer;
}

.useful {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 75px;
}

.useful-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.useful-title:hover {
    color: var(--color-primary-text);
}

.useful-link {
    color: #b9b9b9;
    font-size: 0.9rem;
}

.brand {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    font-weight: normal;
}

.brand-title:hover {
    color: var(--color-primary-text);
}

.company {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 10px;
}

.social-link {
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
    transform: scale(1.2);
}

.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.youtube:hover {
    color: #ff0000;
}

.twitter:hover {
    color: #00ccff;
}

.tiktok:hover {
    color: #000000;
}

.instagram:hover {
    color: #ff6600;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.about-us-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    margin: 0;
}

.about-text {
    color: #c9c9c9;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
}

.about-text:hover {
    color: #c9c9c9;
}

.resources {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.interact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

footer {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 10px;
    color: #757575;
    width: 100%;
    text-align: left;
    font-size: 0.7rem;
    font-weight: normal;
    z-index: 1000;
}

/* RESPONSIVE */

@media (max-width: 990px) {
    header {
        background: none;
    }

    .navbar .links,
    .navbar .action-button {
        display: none;
    }

    .navbar .profile {
        display: none;
    }

    .navbar .burger-menu-button {
        display: flex;
        flex-direction: row-reverse;
        gap: 10px;
    }

    .burger-menu {
        display: block;
    }

    .discord {
        display: none;
    }

    .brand {
        display: none;
    }

    .about {
        display: none;
    }

    .resources {
        display: none;
    }

    .interact {
        display: none;
    }
}

@media (max-width: 576px) {
    .burger-menu {
        left: 2rem;
        width: unset;
    }
}