@font-face {
    font-family: 'TT Hazelnuts';
    src: local('../fonts/TT Hazelnuts Extra Bold'), local('../fonts/TT-Hazelnuts-Extra-Bold'),
        url('../fonts/TTHazelnuts-ExtraBold.woff2') format('woff2'),
        url('../fonts/TTHazelnuts-ExtraBold.woff') format('woff'),
        url('../fonts/TTHazelnuts-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body {
    background-color: #9E9E9E;
}

.page-container {
    height: 100vh;
    max-width: 450px;
    margin: auto;
    overflow: auto;
}

.page-wrapper {
    background-color: #250946;
}

.navbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #250946;
    padding: 13px 24px;
}

.navbar .navbar-logo {
    width: 37%;
}

.navbar .navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-area {
    display: flex;
    background-color: #0D0431;
    color: white;
    padding: 8px;
    font-size: 15px;
}

.announcement-area i {
    color: #FFCE29;
    padding: 0 8px;
    transform: scale(1.2);
}

.announcement-area .moving-text {
    overflow: hidden;
}

.announcement-area .moving-text p {
    text-wrap: nowrap;
    animation: marquee 20s linear infinite;
    margin: 0;
    user-select: none;
}

.announcement-area .moving-text p:active {
    animation-play-state:paused;
}

@keyframes marquee {
    0% {
        -moz-transform: translateX(120%);
        -webkit-transform: translateX(120%);
        transform: translateX(120%)
    }

    100% {
        -moz-transform: translateX(-350%);
        -webkit-transform: translateX(-350%);
        transform: translateX(-350%);
    }
}

#banner-slide,
#banner-slide .carousel-inner,
#banner-slide .carousel-item {
    height: 100%;
}

.banner-area {
    margin: 0 21px;
    height: 200px;
}

.banner-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-area {
    display: flex;
}

.button-area button {
    width: 50%;
    border: none;
    text-transform: uppercase;
    height: 46px;
    font-weight: 500;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.button-login {
    background-color: #9442D9;
}

.button-daftar {
    background-color: #F00A47;
}

.menu-area {
    display: flex;
    overflow-x: auto;
    margin: 12px 20px;
    gap: 15px;
    user-select: none;
}


.menu-area .menu-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    ;
}

.menu-area img {
    height: 16px;
    margin-right: 5px;
}

.jackpot-area {
    background: url(../img/bg/activity-jackpot.b79d1a1.jpg);
    background-repeat: no-repeat;
    background-position: center;

    min-height: 200px;
    margin: 20px 22px 10px 22px;
    border: 1px solid red;
    user-select: none;
}

.jackpot-area .text-jackpot {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'TTHazelnuts-ExtraBold', sans-serif;
    font-weight: bold;
}

.text-jackpot1 div:nth-child(1) {
    color: #F00A47;
    font-size: 30px;
    font-style: italic;
    margin-top: 25px;
    line-height: 25px;
}

.text-jackpot1 div:nth-child(2) {
    color: #fff;
    font-size: 25px;
}

.text-jackpot2 {
    margin-top: 15px;
    font-size: 40px;
    line-height: 40px;
    color: #E8F01D;
}

.categories-area {
    background-color: #160E31;
    padding: 22px 0;
    user-select: none;
}

.category-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 22px;
}

.category-list .category-item {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.games-area {
    background-color: #160E31;
    padding: 30px 22px;
    user-select: none;

}

.games-area .games-header {
    font-size: 14px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.games-area .games-header .games-seeall {
    font: inherit;
    color: white;
    border: 1px solid white;
    border-radius: 16px;
    padding: 2px 10px;
    background-color: transparent;
    cursor: pointer;
}

.games-area .games-header .games-seeall:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.games-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 0;
}

.games-list .games-item {
    width: 32%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}

.games-list .games-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-area {
    color: white;
    padding: 0 22px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.phone-item {
    display: flex;
    align-items: center;
    width: 50%;
}

.phone-item i {
    font-size: 20px;
    margin-right: 8px;
}

.phone-item span {
    font-size: 14px;
    font-weight: bold;
}

.phone-item:nth-child(even) {
    justify-content: flex-end;
}

.paymentinfo-area {
    padding: 0 22px;
    padding-top: 15px;
    user-select: none;
}

.paymentbank-list {
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
}

.paymentbank-item {
    display: flex;
    align-items: center;
    width: 30%;
}

.paymentbank-item img {
    filter: brightness(0) invert(2);
    padding-left: 8px;
    height: 85%;
    width: 85%;
    object-fit: contain;
}

.round-shape-green {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    background-color: #1A611A;
    border-radius: 50%;
}

.round-shape-red {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    background-color: #F00A47;
    border-radius: 50%;
}

.contact-area {
    padding: 0 22px;
    padding-top: 15px;
    user-select: none;
}

.contact-list {
    padding: 15px 15px 0 15px;
    display: flex;
    font-size: 40px;
    color: white;
    justify-content: space-around;
}

.description-area {
    padding: 0 22px;
    color: gray;
}

.description-area .desc-title {
    font-weight: bold;
    color: white;
}

.description-area p {
    font-size: 14px;
    color: #908691;
}

.copyright {
    padding: 22px;
    padding-bottom: 60px;
    font-size: 14px;
    color: #908691;
} 

.bottom-nav {
    position: fixed;
    bottom: 0;
    height: 55px;
    width: 450px;
    padding: 5px 0;
    background-color: black;
    z-index: 9999;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 12px;
    align-items: center;
    filter: brightness(0) invert(0.4);
    height: 90%;
}

.bottom-nav-item img {
    width: 80%;
    height: 60%;
    object-fit: contain;
}

@media screen and (max-width: 450px) {
    .bottom-nav {
        width: 100%;
    }
}