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: var(--color--black);
    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: white;
    font-size: 1.5rem;
}

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

header {
    background: black;
}

.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 #eee;
    margin: 20px 0;
}

.custom-btn {
    font-weight: bold;
    color: var(--color--primary);
    background: transparent;
    border: 3px solid #cd4141;
    border-radius: 30px;
    padding: 5px 10px;
}

.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;
    font-weight: 600;
    color: #cccfd3;
    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 {
    color: white;
    background-color: var(--color--primary);
    border-radius: 30px;
}

.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%);
    }
}