html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: var(--background-bg-black, #19191C);
}

.top-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--service-grey-white-dark-grey-1, #292935);
    height: 60px;
    overflow-x: auto;
    white-space: nowrap;
}

.top-navigation-container {
    display: inline-flex;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
    padding: 0;
}

.top-navigation-container li {
    display: flex;
    padding: 12px 20px;
    min-width: fit-content;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    border-radius: 999px;
    border: 1px solid var(--service-grey-white-dark-grey-3, #535374);
    background: var(--service-grey-white-dark-grey-2, #3B3B54);

    &.active {
        border-radius: 999px;
        border: 1px solid var(--core-colors-olyred, #F73535);
        background: var(--service-grey-white-dark-grey-2, #3B3B54);
    }
}

.top-navigation-container li a {
    color: var(--text-colors-third-dark, #C9C9D7);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 12px */
    text-transform: uppercase;
    text-decoration: none;
}

.game-authorized {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1366px;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    padding: 20px;
    margin: 20px;
}
}

.game-authorized-container {
    width: 50vw;
    display: inline-flex;
    flex-direction: column;
    gap: 40px;
}

.game-authorized-header {
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.game-authorized-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.game-authorized-text p {
    color: var(--text-colors-primary-light, #F9F9F9);
    /* Desktop/Text body 1 (medium) */
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
}

.game-authorized-sub-header {
    color: var(--text-colors-solid-white, #FFF);
    /* Desktop/Subtitle 2 */
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
    /* 24px */
}

.game-authorized-bullets li {
    color: var(--text-colors-primary-light, #F9F9F9);
    /* Desktop/Text body 1 (medium) */
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 22.4px */
}

.game-authorized-text a {
    color: var(--text-colors-primary-light, #F9F9F9);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration-line: underline;

}

@media only screen and (max-width: 1280px) {

    .top-navigation {
        justify-content: flex-start;
    }
}