:root{
    --main-background: #ff0000;
    --main-color: #ff0000;
    --main-shadow: rgba(250, 44, 44, 0.3);
    --second-color: #fff;
    --second-background: #000;
    --main-linear: #ff0000;
    --third-background: #000;
}

input {
    border: none;
}

button {
    border: none;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 900;
    font-family: Arial, sans-serif;
}

body{
    background: linear-gradient(to bottom,#1a1a1a,#333);
    /* background: url(/Element/bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-track {
    background: #4d4d4d;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
}

header{
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    height: auto;
    background: var(--third-background);
    box-shadow: 0px 0px 5px var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.headerContainer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    justify-self: center;
    padding: 5px 20px;
    height: 90px;
    align-content: center;
}

.header-leftOpenMenu{
    display: none;
}

.header-leftOpenMenu img{
    cursor: pointer;
    width: auto;
    height: 30px;
}

.header-centerLogo img{
    width: auto;
    height: 100%;
    object-fit: contain;
    max-height: 60px;
}

.header-rightPCLogin{
    display: grid;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
}

.pcHeaderLoginRow1{
    display: flex;
    justify-content: center;
}

.pcHeaderLoginRow1 input{
    padding: 5px 10px;
    width: 180px;
    border-radius: 8px;
    margin: 0 3px;
    border: none;
}

.pcHeaderLoginRow1 a{
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 11px;
    align-content: center;
}

.headerBtn-left{
    background: var(--third-background);
    color: var(--main-color);
    box-shadow: 0px 0px 5px var(--main-color);
    border: 1px solid var(--main-color);
    margin: 0 10px 0 5px;
}

.headerBtn-right{
    color: var(--second-color);
    background: var(--main-linear);
}

.pcHeaderLoginRow2{
    display: flex;
    justify-content: center;
    color: #fff;
}

.pcHeader-forgot{
    font-size: 14px;
}

.pcHeaderLoginRow2 a{
    text-decoration: none;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.pcHeaderLoginRow2 .currentTime{
    margin-left: 20px;
    font-size: 12px;
}

.header-navbar{
    background: var(--main-linear);
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0px 5px 10px black;
}

.headerNav-container{
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-evenly;
}

.headerNav-container ul {
    display: flex;
    list-style: none;
}

.headerNav-container .nav-item {
    padding: 10px;
    position: relative;
}

.headerNav-container .nav-item a {
    text-decoration: none;
    color: var(--second-color);
}

.headerNav-container .submenu {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 133px;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

.headerNav-container .submenu li {
    padding: 5px;
}

.headerNav-container .submenu img {
    width: auto;
    height: 140px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(80%);
}

.headerNav-container .submenu p {
    color: var(--second-color);
    text-align: center;
    margin: 0;
    padding: 0;
}

.headerNav-container .submenu li:hover img {
    opacity: 1;
    filter: grayscale(0);
}

.headerNav-container .submenu li:hover p {
    color: var(--second-color);
    background: var(--main-color);
    padding: 0 10px;
    border-radius: 5px;
}

.headerNav-container .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.671);
    z-index: 1001;
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 250px;
    height: 100%;
    background: var(--second-background);
    box-shadow: 0 20px 5px var(--main-color);
    color: white;
    transition: left 0.3s ease;
    z-index: 1002;
}

.sideMenu-Cover{
    border-top: 2px solid white;
    text-align: center;
}

.sidebar.active {
    left: 0;
}

.sideBarTopCont{
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding: 10px 15px;
}

.sideBarTopCont img{
    width: auto;
    height: 35px;
    cursor: pointer;
}

.close-btn{
    padding: 0;
    background: transparent;
    border: none;
}

.close-btn img{
    width: auto;
    height: 35px;
    cursor: pointer;
}

.menu-container-wrapper img {
    max-width: 100%;
    max-height: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
}

.sidebar a {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    padding: 7px 0 7px 14px;
    text-decoration: none;
    border-top: 1px solid var(--main-color);
    cursor: pointer;
}

.sidebar a:last-child {
    border-bottom: 1px solid var(--main-color);
}

.sidebar a:hover {
    background-color: var(--main-shadow);
}

.chat-button-wrapper{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1003;
}

.chat-button-wrapper .chat-button-icon{
    width: 60px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}

.afterMarquee-LoginBtn{
    display: flex;
    width: 100%;
}

.afterMarquee-LoginBtn a{
    width: 50%;
    padding: 10px 0;
    border: none;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    align-content: center;
    text-decoration: none;
    align-items: center;
}

.afterMarquee-LoginBtn .LoginBtn-left{
    background: black;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.afterMarquee-LoginBtn .LoginBtn-right{
    color: var(--second-color);
    background: var(--main-linear);
}

#footer-bottomNav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--third-background);
    display: grid;
    z-index: 1000;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    box-shadow: 0px 0px 5px var(--main-color);
    border-top: 1px solid var(--main-color);
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.5;
    flex: 1;
    padding: 5px 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--main-color);
}

.imgIcon-wrapper{
    width: 30px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgIcon-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottom-nav span{
    display: block;
    text-align: center;
}

.bottom-copyRight {
    text-align: center;
    padding: 3px 0;
    background: var(--main-linear);
}

.bottom-copyRight p {
    font-size: xx-small;
    color: var(--second-color);
}

.swiper-container {
    width: 100%;
    height: fit-content;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: auto;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    opacity: 1;
    transition: background 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
    width: 30px;
    height: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-background);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(0.7);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--main-background);
}

.marqueeWrapper{
    width: 100%;
    background: var(--main-color);
    padding: 0 20px;
}

.marqueeWrapper marquee{
    width: 100%;
    padding: 5px 0;
}

.marqueeWrapper span{
    color: var(--second-color);
    font-size: 14px;
}

.homeJackpot-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    justify-content: center;
    justify-self: center;
    margin: 20px 0 0 0;
}

.homeJackpot-container{
    background: var(--second-background);
    border: 5px solid var(--main-color);
    border-radius: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-content: center;
    align-items: center;
}

.homeJackpot-leftSide{
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: left;
    font-size: 20px;
    font-weight: bolder;
    color: var(--main-color);
}

.homeJackpot-rightSide{
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: bolder;
    color: var(--main-color);
}

.homeJackpot-myrTitle{
    margin-right: 30px;
}

.homeBoxContainer{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    justify-self: center;
    padding: 20px 0 0 0;
    gap: 10px;
}

.homeWelcomeBonus-wrapper{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.homeWelcomeBonus-wrapper img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mobile-homePage{
    display: none;
}

.homeProducts-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 0 0;
    width: 100%;
    max-width: 1050px;
    justify-self: center;
}

.homeProducts-categoryWrapper{
    display: flex;
    justify-content: center;
}

.homeProducts-categoryWrapper2{
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    gap: 10px;
    background: var(--second-background);
    border-radius: 50px;
    border: 3px solid var(--main-color);
    width: 80%;
}

.homeProducts-perCategory{
    display: flex;
    justify-content: left;
    text-align: center;
    align-items: center;
    color: var(--main-color);
    padding: 5px 20px;
    cursor: pointer;
    border: 2px solid var(--main-color);
    border-radius: 30px;
}

.homeProducts-perCategory img{
    width: auto;
    height: 30px;
    justify-self: center;
    object-fit: cover;
    margin-right: 7px;
}

.homeProducts-categoryName{
    font-size: 15px;
}

.homeProducts-productsWrapper{
    display: flex;
    justify-content: center;
}

.homeProducts-productsWrapper::-webkit-scrollbar {
    width: 5px;
}

.homeProducts-productsWrapper::-webkit-scrollbar-track {
    background: #4d4d4d;
    border-radius: 4px;
}

.homeProducts-productsWrapper::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
}

#homeProducts-productsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    width: 80%;
}

#homeProducts-productsContainer .product-item{
    display: grid;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 31%;
    cursor: pointer;
}

#homeProducts-productsContainer .product-item p{
    color: var(--second-color);
    font-size: 12px;
    background: var(--main-color);
    padding: 3px 5px;
}

#homeProducts-productsContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homePromote-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    padding: 15px 20px;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

.homePromote-top{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

.homePromoteTop-left{
    color: var(--main-color);
    font-size: 14px;
}

.homePromoteTop-right{
    text-decoration: none;
    color: white;
    font-size: 10px;
    border-bottom: 1px solid white;
    cursor: pointer;
}

.service-box {
    background: var(--second-background);
    color: white;
    padding: 15px;
    width: calc(100% - 40px);
    border-radius: 5px;
    border: 2px solid var(--main-color);
    text-align: center;
    margin: 0;
}

.perServiceItem{
    display: flex;
    justify-content: space-between;
}

.perServiceItem .leftSide{
    display: flex;
    flex-direction: column;
}

.service-title {
    background: var(--main-color);
    color: var(--second-background);
    padding: 8px;
    font-weight: 900px;
    text-transform: uppercase;
    font-size: 14px;
}

.service-item {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.perServiceItem{
    display: flex;
    justify-content: space-between;
}

.perServiceItem .leftSide{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-label {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 900px;
}

.service-subtext {
    font-size: 12px;
    color: #ccc;
}

.time-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}

.time-digit {
    background: var(--second-background);
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    width: 25px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px;
}

.time-unit {
    margin-left: 5px;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
}

.progress-bar .deposit {
    width: 10%;
    background: var(--main-color);
}

.progress-bar .withdraw {
    width: 50%;
    background: var(--main-color);
}

.service-note {
    font-size: 10px;
    color: #888;
    margin-top: 10px;
}

.splide{
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
}

.splide .splide__list{
    gap: 10px;
}

.splide .splide__track img{
    height: 25px;
    width: auto;
    object-fit: cover;
    filter: grayscale(100%);
}

.splide__track img:hover{
  filter: grayscale(0%);
}

.splide__pagination__page,
.splide__arrow{
    display: none;
}

footer{
    width: 95%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
    border-top: 1px dotted var(--main-color);
    justify-self: center;
    overflow: hidden;
}

.footer-col1{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    border-bottom: 1px dotted var(--main-color);
}

.footerCol1-perContent{
    display: flex;
    flex-direction: column;
}

.footerPerCol-container{
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.footerPerCol-container img{
    width: auto;
    height: 45px;
    object-fit: cover;
    filter: grayscale(100%);
}

.footerPerCol-container img:hover{
    filter: grayscale(0%);
}

.paymentMethod img{
    border-radius: 4px;
}

.footer-col2{
    width: 100%;
    text-align: center;
    color: var(--main-color);
    font-size: 14px;
}

.pageMaincontainer{
    min-height: 80vh;
    margin: 150px 0 150px 0;
}

.login-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px 0;
    max-width: 700px;
    justify-self: center;
}

.login-container{
    width: 80%;
    padding: 10px;
}

.login-container h1{
    padding: 0;
    margin: 0;
    text-align: center;
    color: var(--main-color);
}

.login-mainContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
}

.formControl-row1{
    display: flex;
    flex-direction: column;
}

.formControl-row1 input,
.formControl-row1 select,
.login-mainContainer button{
    padding: 10px;
    border-radius: 5px;
}

.formControl-row1 label{
    color: #fff;
    padding: 5px 10px;
}

.login-mainContainer button{
    margin-top: 10px;
    background: var(--main-background);
    color: var(--second-color);
    cursor: pointer;
}

.login-container .login-forgot{
    text-align: end;
    color: #fff;
    font-size: 14px;
}

.login-container .login-forgot a{
    color: var(--main-color);
}

.promotion-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    padding: 10px;
    justify-self: center;
}

#promotionContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

#promotionContainer .promotion-perPromote{
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 3px solid var(--main-color);
}

#promotionContainer .promotion-perPromote img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.promotion-perPromote .promotion-titlenBtn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 10px 20px;
    background: var(--main-linear);
}

.promotion-perPromote .promotion-titlenBtn h3{
    color: var(--second-color);
    padding: 0;
    margin: 0;
}

.promotion-perPromote .promotion-actionsBtn{
    display: flex;
    gap: 10px;
}

.promotion-perPromote .promotion-actionsBtn button{
    padding: 7px 10px;
    border-radius: 7px;
    cursor: pointer;
    border: none;
}

.promotion-leftBtn{
    background: var(--second-background);
    color: var(--main-color);
}

.promotion-rightBtn{
    background: red;
    color: #fff;
}

#promoModal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}

.promoModal-container{
    background: #fff;
    width: 80%;
    height: 80%;
    max-width: 700px;
    margin: 10%;
    position: relative;
    justify-self: center;
    padding: 10px;
    overflow-x: auto;
    word-wrap: break-word;
    box-sizing: border-box;
}

.promoModal-topContainer{
    padding: 0 0 10px 0;
}

#modalClose{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #000;
    border-radius: 7px;
    display: inline-block;
}

.promoModal-container #modalBanner{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.modalContent-wrapper{
    width: 100%;
    max-width: 100%;
}

#modalContent{
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    height: auto;
    word-wrap: break-all !important;
}

#modalContent *,
#modalContent *::before,
#modalContent *::after {
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

#modalContent table {
    width: 100% !important;
    table-layout: fixed !important;
}

#modalContent tbody{
    word-break: break-all !important;
}

#modalContent img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

#modalContent iframe {
    max-width: 100% !important;
    height: auto !important;
}

#modalContent pre {
  white-space: pre-wrap !important;
  word-break: break-word !important;
}

.pcAccount-wrapper{
    display: flex;
    align-content: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
    max-width: 1050px;
    gap: 20px;
    padding: 20px;
}

.pcAccount-leftMenu{
    display: flex;
    flex-direction: column;
    width: 20%;
    background: linear-gradient(0deg,#1a1a1a,#333);
    filter: drop-shadow(2px 3px 3px rgb(0, 0, 0, .5));
    border-radius: 5px;
    overflow: hidden;
}

.pcAccount-leftMenu .pcAccount-menuType,
.pcAccount-leftMenu a{
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #ccc;
    color: #fff;
    font-size: 13px;
    align-content: center;
}

.pcAccount-leftMenu .pcAccount-menuType{
    background: var(--main-background);
    color: var(--second-color);
    text-align: center;
    padding: 8px 20px;
}

.pcAccount-leftMenu a{
    cursor: pointer;
    padding: 10px;
    text-decoration: none;
    display: flex;
    align-content: center;
}

.pcAccount-leftMenu a:hover{
    background: #a2a2a2;
}

.pcAccount-leftMenu img{
    height: 24px;
    width: auto;
    object-fit: cover;
    margin-right: 5px;
}

.pcAccount-rightContent{
    width: 60%;
    background: linear-gradient(0deg,#1a1a1a,#333);
    filter: drop-shadow(2px 3px 3px rgb(0, 0, 0, .5));
    min-height: 800px;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
}

.profile-accountInfo-wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
}

.profile-accountInfo-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    gap: 10px 5px;
    padding: 20px;
}

.profile-accountInfo-wrapper .profile-formGroup{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 49%;
}

.profile-formGroup label{
    text-align: left;
    width: 100%;
    padding: 0 10px;
}

.profile-formGroup input{
    width: 100%;
    padding: 5px 10px;
    margin-top: 5px;
    text-align: center;
    border-radius: 7px;
}

.profile-updateBtn{
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 5px 10px;
}

.profile-updateBtn button{
    padding: 5px 15px;
    background: var(--main-background);
    color: var(--second-color);
    cursor: pointer;
    border-radius: 7px;
}

.profile-changePassword-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    gap: 10px;
}

.profile-pageTitle{
    color: var(--second-color);
    font-size: 18px;
    font-weight: 900;
    padding: 7px 0;
    width: 100%;
    text-align: center;
    background: var(--main-color);
}

.profile-changePass-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
}

.profile-changePassword-wrapper .profile-formGroup{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
}

.profile-changePassword-wrapper .profile-updateBtn{
    width: 70%;
    display: flex;
    justify-content: end;
    padding: 5px 10px;
}

.profile-changePassword-wrapper .profile-updateBtn button{
    padding: 5px 15px;
    background: var(--main-background);
    color: var(--second-color);
    cursor: pointer;
    border-radius: 7px;
}

.profile-productsAcc-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    gap: 10px;
}

.profile-applyGameAcc-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 10px;
}

.profile-productsAcc-leftWrapper{
    display: flex;
    padding: 10px;
    flex-wrap: nowrap;
    border: 1px solid var(--main-color);
}

.profile-productsAcc-leftTitle{
    font-size: 12px;
    color: #fff;
    width: 30%;
}

#profile-applyGameAcc{
    display: flex;
    width: 70%;
    flex-wrap: wrap;
    gap: 10px;
}

#profile-applyGameAcc button{
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 7px;
    background: transparent;
    color: var(--main-color);
    font-size: 10px;
    border: 1px solid var(--main-color);
}

#profile-applyGameAcc i{
    font-size: 11px;
}

#profile-applyGameAcc p{
    font-size: 10px;
}

#profile-productsAcc{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.profile-productsAcc-perItem{
    padding: 10px;
    width: 49%;
    border: 1px solid #a2a2a2;
    border-left: 3px solid var(--main-color);
}

.profile-productsAcc-topContainer{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    color: var(--main-color);
    margin-bottom: 10px;
}

.profile-productsAcc-topContainer div{
    display: flex;
    align-content: center;
    align-items: center;
    font-size: 13px;
}

.profile-productsAcc-topContainer img{
    width: auto;
    height: 20px;
    object-fit: cover;
    margin-right: 5px;
}

.profile-productsAcc-topContainer button{
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 7px;
    cursor: pointer;
}

.profile-productsAcc-bodyContaine{
    display: flex;
    flex-direction: column;
    align-content: center;
}

.profile-productsAcc-perRowID{
    display: flex;
    align-content: center;
    color: #fff;
    font-size: 12px;
    padding: 3px 0;
}

.profile-productsAcc-perRowID label{
    padding: 0 5px;
    border-right: 2px solid var(--main-color);
    width: 35%;
}

.profile-productsAcc-perRowID div{
    padding: 0 10px;
    width: 55%;
}

.profile-productsAcc-perRowID button{
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.profile-productsAcc-perRowID img{
    width: auto;
    height: 20px;
    object-fit: cover;
}

.profile-productsAcc-bottomDownload{
    display: flex;
    justify-content: end;
    width: 100%;
    margin-top: 10px;
}

.profile-productsAcc-bottomDownload a{
    font-size: 11px;
    color: var(--main-color);
    text-decoration: none;
    border-bottom: 1px solid var(--main-color);
}

.profile-history-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
}

.profile-history-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.profile-history-topSelect{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

.profile-history-formControl{
    display: flex;
    flex-direction: column;
    width: 30%;
}

.profile-history-formControl label{
    color: #fff;
    font-size: 9px;
    margin-bottom: 5px;
    padding: 0 10px;
}

.profile-history-formControl input,
.profile-history-formControl select{
    width: 100%;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 7px;
}

.profile-history-submitBtn {
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 10px;
}

.profile-history-submitBtn button{
    padding: 4px 8px;
    border-radius: 7px;
    background: var(--main-color);
    color: var(--second-color);
    cursor: pointer;
}

.profile-history-bodyContainer{
    width: 100%;
    overflow: auto;
    border-left: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
}

.profile-history-bodyContainer::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.profile-history-bodyContainer::-webkit-scrollbar-track {
    background: #4d4d4d;
    border-radius: 4px;
}

.profile-history-bodyContainer::-webkit-scrollbar-thumb {
    background: var(--main-background);
    border-radius: 4px;
}

.profile-history-bodyContainer table{
    width: auto;
    table-layout: fixed;
    border-collapse: collapse;
    overflow: auto;
    min-width: 100%;
}

.profile-history-bodyContainer tr{
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.profile-history-bodyContainer th{
    background: var(--main-background);
    color: var(--second-color);
    padding: 10px;
    font-size: 12px;
    text-align: center;
    width: fit-content;
}

.profile-history-bodyContainer td{
    padding: 5px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    width: fit-content;
}

.profile-history-bodyContainer a{
    color: var(--main-color);
    cursor: pointer;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--main-color);
}

.profile-addTransaction-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.profile-addTransaction-bodyContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px 20px;
}

.profile-addTransaction-leftWrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.profile-addTransaction-fromContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
}

.accountFund-formGroup{
    display: flex;
    flex-direction: column;
    width: 80%;
}

.accountFund-formGroup label{
    color: #fff;
    width: 100%;
    padding: 5px;
    font-size: 13px;
}

.accountFund-formGroup input,
.accountFund-formGroup select{
    width: 100%;
    padding: 5px 10px;
    border-radius: 7px;
}

.accountFund-formGroup input,
.accountFund-formGroup select:focus{
    outline: none;
}

#bankOption{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 80%;
    background: #fff;
    border-radius: 7px;
    justify-content: space-between;
    padding: 10px;
}

#bankOption .bank-item{
    display: flex;
    font-size: 13px;
    width: 45%;
}

#bankOption .bank-item img{
    width: auto;
    height: 40px;
    object-fit: contain;
    margin-right: 5px;
}

.depositBankDetails{
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 5px;
}

.input-copy-group {
  position: relative;
  display: flex;
}

.input-copy-group input {
  width: 100%;
  padding: 5px 10px;
  border-radius: 7px 0 0 7px;
  border: 1px solid #ccc;
  outline: none;
}

.input-copy-group input:focus{
    outline: none;
}

.input-copy-group button {
  border: none;
  padding: 5px 5px;
  background: #ff0000;
  border-radius: 0 7px 7px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.input-copy-group img{
    width: auto;
    height: 20px;
    object-fit: cover;
}

.input-copy-group button:hover {
  background-color: #b30000;
}

#previewReceipt{
    width: 130px;
    height: 130px;
    padding: 10px;
    border: 1px dashed #ccc;
    overflow: hidden;
    object-fit: contain;
}

.fakeUploadReceipt{
    background: transparent;
    width: 130px;
    height: 130px;
    border: 1px dashed #ccc;
    color: #fff;
    cursor: pointer;
}

.profile-addTransaction-rightWrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.profile-addTransaction-rightWrapper h1{
    color: #ff0000;
    font-size: 18px;
}

.profile-addTransaction-rightContent{
    display: flex;
    flex-direction: column;
}

.profile-addTransaction-rightContent .perMessages{
    font-size: 12px;
    color: #888;
}

.profile-verification-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
}

.profile-verification-div{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.profile-verification-div img{
    width: 80%;
    height: auto;
    object-fit: contain;
}

.profile-verification-div button{
    cursor: pointer;
    width: 80%;
    height: fit-content;
    min-height: 200px;
    object-fit: contain;
    background: transparent;
    border: 2px dashed #ccc;
    color: #ccc;
    font-size: 30px;
}

.contacsUs-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

#contacsUs-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    gap: 20px;
}

.contacs-card{
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    align-content: center;
    width: 40%;
    aspect-ratio: 1 / 1;
    padding: 20px;
    display: block;
    border-radius: 20px;
    background: var(--second-background);
    border: 1px solid var(--main-color);
    filter: drop-shadow(2px 3px 3px var(--main-color));
    color: var(--main-color);
    overflow: hidden;
}

.contacs-card-img{
    width: 50%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.contacs-card-title{
    margin-bottom: 5px;
    font-size: 22px;
}

.contacs-card-info{
    font-size: 14px;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.progress-step {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--main-color);
}

.progress-step.active {
    background: var(--main-background);
    color: var(--second-color);
}

.progress-line.active {
    background: var(--main-background);
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background: #fff;
    margin: 0 10px;
}

.membersRanking-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 900px;
    justify-self: center;
    padding: 20px;
}

.membersRanking-conatiner{
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 2px solid var(--main-color);
}

.membersRanking-conatiner .topContent{
    background: var(--main-background);
    color: var(--second-color);
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.membersRanking-mainContent{
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.membersRanking-typeGroup{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-content: center;
    height: fit-content;
    padding: 10px 20px;
    min-width: 260px;
}

.rankingContainer{
    padding: 0 0 20px 0;
    max-height: fit-content;
    overflow-y: auto;
    margin-top: -20px;
}

.membersRanking-typeGroup h1{
    background: var(--main-background);
    color: var(--second-color);
    text-align: center;
    font-size: 14px;
    padding: 10px;
    margin: 0;
    z-index: 99;
}

.membersRanking-typeGroup ul{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.membersRanking-typeGroup li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    margin: 10px 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    border-bottom: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
    color: var(--main-color);
    background: var(--second-background);
}

@media screen and (max-width: 768px) {
    body{
        margin: 71.5px 0 80px 0;
    }
    header{
        padding: 10px;
    }
    .headerContainer-wrapper{
        height: fit-content;
    }
    .header-leftOpenMenu{
        display: block;
    }
    .header-centerLogo img{
        max-height: 40px;
    }
    .header-rightContainer{
        display: none;
    }
    .header-navbar{
        display: none;
    }
    .pageMaincontainer{
        min-height: 74vh;
        height: fit-content;
        margin: 75px 0 0 0;
    }
    .chat-button-wrapper{
        bottom: 95px;
        right: 15px;
    }
    .chat-button-wrapper .chat-button-icon{
        width: 60px;
        height: 60px;
    }
    .mobile-homePage{
        display: block;
    }
    .marqueeWrapper{
        background: var(--second-background);
    }
    .marqueeWrapper span{
        color: var(--main-color);
    }
    .homeJackpot-wrapper{
        display: none;
    }
    .homeBoxContainer{
        display: none;
    }
    .service-box{
        max-width: none;
        margin: 0 20px;
    }
    .homeProducts-wrapper{
        flex-direction: row;
        align-items: start;
    }
    .homeProducts-categoryWrapper{
        width: 40%;
    }
    .homeProducts-categoryWrapper2{
        flex-direction: column;
        width: 100%;
        background: none;
        border: none;
    }
    .homeProducts-productsWrapper{
        width: 60%;
        max-height: 650px;
        overflow: auto;
    }
    #homeProducts-productsContainer{
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: unset;
        gap: 10px;
        max-width: none;
        padding: 10px;
    }
    #homeProducts-productsContainer .product-item{
        width: 100%;
    }
    .footer-col1{
        flex-direction: column;
    }
    .footerPerCol-container{
        justify-content: center;
    }
    .footerPerCol-container img{
        height: 30px;
    }
    .footer-col2{
        display: none;
    }
    .promotion-titlenBtn{
        flex-direction: column;
        justify-content: center;
        padding: 5px 10px;
        gap: 10px;
    }
    .promotion-actionsBtn{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .pcAccount-leftMenu{
        display: none;
    }
    .pcAccount-rightContent{
        width: 100%;
    }
    .profile-accountInfo-wrapper{
        flex-direction: column;
        justify-content: center;
    }
    .profile-accountInfo-wrapper .profile-formGroup{
        width: 100%;
    }
    .profile-formGroup label, .profile-formGroup input{
        width: 80%;
    }
    .profile-changePassword-wrapper .profile-formGroup{
        width: 100%;
    }
    .profile-formGroup label, .profile-formGroup input{
        width: 80%;
    }
    .profile-changePassword-wrapper .profile-updateBtn{
        width: 80%;
    }
    .profile-productsAcc-perItem {
        width: 90%;
    }
}

@media screen and (max-width: 450px) {
    #bankOption .bank-item{
        width: 100%;
    }
    .contacs-card-title{
        font-size: 16px;
    }
    .contacs-card-info{
        font-size: 10px;
    }
    .membersRanking-typeGroup{
        width: 100%;
    }
    .promotion-perPromote .promotion-titlenBtn{
    padding: 5px 10px;
    }
    .promotion-perPromote .promotion-titlenBtn h3{
        font-size: 14px;
    }
    .promotion-perPromote .promotion-actionsBtn button{
        font-size: 10px;
        padding: 3px 8px;
    }
}
