body,
html {
    height: 100%;
    margin: 0;
}

.body-content {
    height: 100%;
}

.header__logo__wrapper {
    max-width: 135px;
}

.header__navigation__wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    background: var(--color--primary);
    top: 0;
    right: 100%;
    transition: all 0.5s;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.header__navigation__wrapper a {
    color: #fff;
    display: block;
    text-decoration: none;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.header__navigation__wrapper a:hover {
    text-decoration: underline;
}

.header__navigation__wrapper.active {
    left: 0;
    z-index: 999;
}

.header__mobile_nav {
    color: black;
    font-size: 1.5rem;
}

.header__mobile_nav--cross {
    position: absolute;
    top: 20px;
    right: 20px;
}

header {
    /* background-image: url(https://h5.aone333.com/header-left-light.c8e0963a2654f914.png);
    background-size: 45% 100%;
    background-repeat: no-repeat;
    background-position: 0px 0px; */
    background-color: #0f1011;
}

.header__menu__wrapper {
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

hr {
    height: 0;
    border: 0;
    border-top: 1px solid black;
    margin: 20px 0;
}

.custom-btn {
    font-weight: bold;
    color: white;
    background: var(--color--green);
    border: 1px solid var(--color--green);
}

.game img,
.game-button img {
    border-radius: 10px;
}

button {
    background: transparent;
    border: none;
}

.footer_menu ul {
    list-style-type: none;
}

.marquee {
    overflow: hidden;
    position: relative;
}

.marquee p {
    padding: 5px;
    color: white;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    /* Prevent text from wrapping */
    animation: scroll-left 20s linear infinite;
}

.game-category-wrapper {
    background-color: #f2f2f2;
    border-radius: 30px;
}

.game-button {
    padding: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center
}

.game-button.active {}

.download-qr-wrapper {
    padding: 20px;
    background: var(--color--primary);
    border-radius: 20px;
}

.section-title {
    font-weight: 600;
    color: var(--color--primary);
    text-align: center;
}

.global-section {
    background: url("https://static.wixstatic.com/media/c7d83a_4ddc238038ac4c4388dc30d89344434c~mv2.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.text-justify {
    text-align: justify;
}

.marquee {
    background: transparent;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee p {
    padding: 5px;
    font-weight: 600;
    color: rgb(0 135 255);
    font-size: .75rem;
    line-height: 1rem;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}