@import "styles/normalize.css";

:root {
  --body: #000;
  --one: #5c01bd;

}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Medium.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Bold.ttf");
  font-weight: 900;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all ease .4s;
}

html {
  font-size: 12px;
  font-family: "Open Sans";
  max-height: 100vh;
}

body {
  max-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--body);
}


.main {
  position: sticky;
  bottom: 0;
  width: 100%;
  flex: 1 1 auto;
  padding-top: 7px;
  background-image: url('assets/images/bg.jpg');
}


.wrapper_m_23_02 {
  max-height: 100vh;
  min-height: 100vh;
  width: 97%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/*********/

button {
  cursor: pointer;
}



ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.link_m_23_02 {
  width: 100%;
  display: inline-block;
}

.link_inline_m_23_02 {
  width: 31%;
  position: relative;
}

.link_inline_m_23_02 h3 {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
width: 100%;
color: white;
background-color: rgba(139, 0, 0, 0.435);
padding: 4px;
text-align: center;
}


/***********************      slider     **********************/
.section_slider_m_23_02 {
  background-color: transparent;
  padding: 125px 10px 10px;
  position: sticky;
}

.sliderjs_viewport_m_23_02 {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.sliderjs_m_23_02 {
  position: relative;
}

.sliderjs_canvas_m_23_02 {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.sliderjs_canvas_m_23_02>li {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.sliderjs_canvas_m_23_02>li.sliderjs_actived_m_23_02 {
  position: static;
}



.sliderjs_pag_m_23_02>li {
  cursor: pointer;
}

.sliderjs_overlay_m_23_02.sliderjs_actived_m_23_02 {
  overflow: hidden;
  position: fixed;
  -webkit-overflow-scrolling: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999999;

}

.img_slider_m_23_02 img {
  min-width: 100%;
  border-radius: 1rem;
  max-height: 200px;
  object-fit: cover;

}

.sliderjs_pag_m_23_02 {
  position: absolute;
  bottom: 15px;
  z-index: 3;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  gap: 7px;
}

.slider_control_m_23_02 {
  background-color: white;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.slider_control_m_23_02.sliderjs_actived_m_23_02 {
  background-color: red;

}

/*************** home page*************/
.box_link_m_23_02 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sing_link_m_23_02 {
    text-decoration: none;
    background-color: #d30b27;
    border-radius: 8px;
    padding: 8px 20px;
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    margin-right: 5px;
    border: 1px solid rgb(255, 0, 0);
}

.container_home_content_m_23_02 {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 5px 10px;
  position: relative;
}

.home_ul_list_m_23_02 {

  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  padding-bottom: 12px;

}

.home_ul_list_m_23_02::-webkit-scrollbar {
  width: 0;
}



.home_link_m_23_02 {
  width: 55px;
  height: 55px;
  background-size: contain;
  background-color: transparent;
  border: none;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 1rem;
}

@media only screen and (max-width: 400px) {
  .home_link_m_23_02 {
    width: 45px;
    height: 45px;
  }
}

.home_link1_m_23_02 {
  background-image: url("assets/icons/ic1.png");
}

.home_link1_m_23_02.activ {
  background-image: url("assets/icons/ic1a.png");
  
}

.home_link2_m_23_02 {
  background-image: url("assets/icons/ic6.png");
}

.home_link2_m_23_02.activ {
  background-image: url("assets/icons/ic6a.png");
    
}

.home_link3_m_23_02 {
  background-image: url("assets/icons/ic2.png");
}

.home_link3_m_23_02.activ {
  background-image: url("assets/icons/ic2a.png");
    
}

.home_link4_m_23_02 {
  background-image: url("assets/icons/ic7.png");
}

.home_link4_m_23_02.activ {
  background-image: url("assets/icons/ic7a.png");
    
}

.home_link5_m_23_02 {
  background-image: url("assets/icons/ic5.png");
}

.home_link5_m_23_02.activ {
  background-image: url("assets/icons/ic5a.png");
    
}

.home_link6_m_23_02 {
  background-image: url("assets/icons/ic4.png");
}

.home_link6_m_23_02.activ {
  background-image: url("assets/icons/ic4a.png");
    
}

.home_link7_m_23_02 {
  background-image: url("assets/icons/ic3.png");
}

.home_link7_m_23_02.activ {
  background-image: url("assets/icons/ic3a.png");
    
}


.home_link8_m_23_02 {
  background-image: url("assets/icons/ic8.png");
}

.home_link8_m_23_02.activ {
  background-image: url("assets/icons/ic8a.png");
    
}

.home_link9_m_23_02 {
  background-image: url("assets/icons/casinoa.png");
}

.home_link9_m_23_02.activ {
  background-image: url("assets/icons/casinob.png");
    
}

.chapter-name {
  color: white;
  font-size: 24px;
  margin-top: 20px;
}

/********/
.home_box_content_m_23_02 {
  flex: 1 1 auto;
  width: 100%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  height: calc(100vh - 415px);

}

@media only screen and (max-height: 1000px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 370px);

  }
}

@media only screen and (max-height: 900px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 206px);

  }
}

@media only screen and (max-height: 800px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 206px);

  }
}

@media only screen and (max-height: 700px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 205px);

  }


}

@media only screen and (max-height: 600px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 205px);

  }


}


@media (min-width: 500px) and (max-height: 800px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 365px);
  }

}

@media (max-width: 300px) and (max-height: 700px) {
  .home_box_content_m_23_02 {
    height: calc(100vh - 300px);
  }

}

.home_box_content_m_23_02::-webkit-scrollbar {
  width: 0;
}


.box_casino_m_23_02 {
  
  display: flex;
  flex-direction: column;
  gap: 10px;
}


@media only screen and (max-height: 1000px) {
  .home_ul_list_m_23_02 {
    height: 550px;

  }
}

@media only screen and (max-height: 900px) {
  .home_ul_list_m_23_02 {
    height: calc(100vh - 206px);

  }
}

@media only screen and (max-height: 800px) {
  .home_ul_list_m_23_02 {
    height: calc(100vh - 365px);

  }
}

@media only screen and (max-height: 700px) {
  .home_ul_list_m_23_02 {
    height: calc(100vh - 205px);

  }

}

.header_logo_title_m_23_02 h1 {
  font-size: 18px;
}

.footer_container_m_23_02 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    width: 100%;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 0;
}
.footer_container_m_23_02 i {
    font-size: 18px;
    margin-bottom: 4px;
}
.footer_img_bt_m_23_02.activ i,
.footer_img_bt_m_23_02.activ {
    color: #ff9712;
    font-weight: bold;
}


.header_logo_title_m_23_02 {
display: flex
;
    align-items: center;
    gap: 5px;
    color: #bb0c21;
    font-size: 18px;
    font-weight: bold;
}


@media only screen and (max-width: 400px) {


  .link_inline_m_23_02 {
    width: 47%;
  }

    .home_ul_list_m_23_02 {
        height: calc(100vh - 206px);
    }

    .footer_container_m_23_02 a {
      font-size: 9px;
    }

    .footer_container_m_23_02 i {
      font-size: 15px;
    }

}



@media only screen and (max-height: 600px) {
  .home_ul_list_m_23_02 {
    height: calc(100vh - 365px);

  }


}

@media (min-width: 500px) and (max-height: 730px) {
  .home_ul_list_m_23_02 {
    height: calc(100vh - 365px);
  }

}

@media (max-width: 400px) and (min-height: 447px) and (max-height:499px) {
  .home_ul_list_m_23_02 {
    height: 100px;
  }

}

@media (max-width: 300px) and (max-height: 700px) {
  .home_ul_list_m_23_02 {
    height: calc(100vh - 300px);
  }

}

.box_hot_m_23_02 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: all ease-in .4s;
  gap: 5px;
}

.figure_img_big_m_23_02 {
  width: 100%;
  object-fit: cover;
}

.figure_img_big_m_23_02 img {
  width: 100%;
  object-fit: cover;
      border-radius: 1rem;
      max-height: 197px;
}

.box_mini_img_m_23_02 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.figure_img_mini_m_23_02 {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.figure_img_mini_m_23_02 img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;

}

/***********************    footer   **********************/

.footer {
  background-color: #820914f0;
  width: 100%;
  position: sticky;
  bottom: -1px;
  left: 0;
  border-top: 1px solid white;
  padding: 5px 10px;
  box-shadow: 0 0 30px 2px red;
}

.footer_container_m_23_02 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.footer_img_bt_m_23_02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  white-space: nowrap;
}

.footer_img_bt_m_23_02.activ {
  color: #e4970a;
}

.footer_img_bt_m_23_02 {
  width: 20px;
  margin-bottom: 5px;
}


/***********************    header  **********************/
.header_m_23_02 {
  width: 100%;
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  margin: 0 auto;
}

.flex_box_header_m_23_02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background-color: #201b1c;
}

.header_logo_img_m_23_02 {
  width: 180px;

}

.box_logo_title_m_23_02 {
  width: 100%;
  padding: 5px 0;
  background-color: #3200008c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo_title_img_m_23_02 {
  width: 50px;
  margin-left: 10px;
  border-radius: 25px;

}

.register {
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.signup {
  background: #000000;
}



.hide_div {
  display: none;
}

#jackpot-counter {
  width: 420px;
  height: 85px;
  background: #161f28;
  border-radius: 20px;
  
  display: flex;
  background: url(https://oda777.777ad.me/cocos/icon/vjp/1933202321981112322.avif) ;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  align-items: center;
  padding: 0 18px;
  gap: 24px;
  justify-content: center;
  font-family: 'Arial Black', Arial, sans-serif;
  margin-bottom: 30px;
}

#jackpot-bg {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  background: #222a36;
  display: flex;
  align-items: center;
  justify-content: center;
}

#jackpot-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#jackpot-amount {
  font-size: 2.1rem;
  color: #ffe85a;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px #fc0, 0 1px 3px #000a;
  font-weight: 900;
  min-width: 220px;
  transform: translate(10px, 10px);
  transition: color 0.3s;
}
