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

.body-content {
    height: 100%;
}

.header__logo__wrapper {
    max-width: 50px;
}

.header__navigation__wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    background: linear-gradient(180deg, #282a29, #000);
    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: #807257;
    font-size: 1.5rem;
}

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

header {
    background: linear-gradient(0deg, rgba(251, 192, 80, 1) 0%, rgba(244, 219, 167, 1) 40%);
}

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

.u9--bg {
    background: url(../../assets/real/u9play-1/u9-bg.png);
    background-repeat: no-repeat;
}

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

.custom-btn{
    background: linear-gradient(155deg, rgba(251, 192, 80, 1) 0%, rgba(244, 219, 167, 1) 80%);
    border: none;
}

.game-button {
    position: relative;
}

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

.game-button-title {
    top: 5%;
    left: 10%;
    font-weight: bold;
    color: white;
    position: absolute;
}

button {
    background: transparent;
    border: none;
}

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

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

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

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