body, a, span , p , h1, h2 , h3, button{
  font-family: sans-serif;
  }
        .logos {
  display: flex!important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  filter: grayscale(100%);
  }
  
  .logos:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
  filter:none;
}
  .logos img {
  max-height: 95px;
  }
  .footer-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-top: 30px;
      max-width: 1200px;
      margin: auto;
  }
  .contact-us, .support-bank {
  flex: 1 1 300px;
  margin: 10px;
  }
  .contact-us h3, .support-bank h3 {
  width: 100%;
  margin: 0 auto;
  font-size: 25px;
  /* background: linear-gradient(141deg, #000 0%, #000 51%, #000 75%); */
  padding: 15px;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #000;
  color: #000;
  }
  .support-bank h3 {
  color: black;
  font-size: 25px;
  padding: 15px;
  }
  .contact-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  }
  .contact-row li{
  padding: 10px;
  text-align: right;
  font-size: 20px;
  }
  .bank-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  }
  .bank-logos {-webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;}
  .bank-logos:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
  filter:none;}
  .bank-logos img {
  max-height: 49px;
  max-width: 240px;
  }
  .app-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
  }
  .app-buttons img {
  height: 40px;
  }
  .footer-bottom {
      font-family: sans-serif;
      text-align: center;
      font-size: 14px;
      font-weight: 800;
      padding-top: 20px;
      margin-bottom: 10px;
      color:#fff
  }
  @media (max-width: 768px) {
    .section .announment{
      padding: 5px;
    background: #000000 !important;
    border: 2px solid #2D5BFF;
    }
  .contact-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  }
  .app-buttons {
  flex-direction: column;
  align-items: center;
  }
  }
  .contact-row p strong,.contact-row p {
  color: #000;
  }
  .contact-row li a{
  color:#000;
  }
  .contact{
  width: 100%;
  /* background: url(../img/contact-us.png); */
  border: 1px solid #000;
  border-radius: 0px 0px 5px 5px;
  border-top: none; 
  }
   .nav_bottom-container {
    width: 100%;
   background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));  border-top: 1px solid var(--blue_line);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  
  .nav-bottom {
    --size: 4rem;
    --backgroundColor: var(--white);
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  
  .nav-bottom .nav-link {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 7px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    overflow: hidden;
  }
  
  .nav-bottom .nav-link .megamenu-icon {
    display: inline-block;
    font-size: 20px;
    width: calc(var(--size) * 0.4);
    height: calc(var(--size) * 0.4);
  }
  
  .nav-bottom .nav-link .text {
    display: block;
    font-size: 12px;
    color: #fff;
    transform: scale(0.8);
    white-space: nowrap;
  }
  
  .nav-bottom .nav-link:hover .text,
  .nav-bottom .nav-link.active .text {
    color: var(--white);
    filter: sepia(1) hue-rotate(270deg) saturate(47) hue-rotate(-295deg);
  }
  .footer-nav {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .footer-nav li {
    flex-basis: 20%;
    max-width: 20%;
  }
  
  .footer-nav li a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    gap: 4px;
  }
  
  .footer-nav li a.none-active,
  .footer-nav li a.none-active:hover {
    text-decoration: none;
  }
  
  .footer-nav li a.m-active {
    color: var(--white);
    position: relative;
    z-index: 0;
  }
  
  .footer-nav li a.m-active .svg-icon {
    filter: drop-shadow(0 0 1px var(--white));
  }
  
  .footer-nav li a.m-active::after {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: radial-gradient(#0f5ae6, transparent 70%);
    width: 100%;
    aspect-ratio: 1/1;
    z-index: -1;
    top: -40%;
  }
  
  .footer-nav li a svg,
  .footer-nav li a img {
    width: 1.2rem;
    height: 1.2rem;
    padding: 0 !important;
    object-fit: contain;
  }
  
  @keyframes beat {
    to {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  
  @keyframes beat {
    to {
      transform: scale(1.2);
    }
  }
  
  .footer-nav li a span {
    text-align: center;
    width: 100%;
    bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    font-size: 9px;
    color: var(--main-text);
  }
  /* line 2, style.scss */
  .wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  color: #ffffff;
  overflow: hidden;
  background-color: rgb(235 240 246 / var(--tw-bg-opacity, 1));
  display: block; }
  /* line 13, style.scss */
  .wrapper .header {
  width: 100%;
  height: auto;
  background: #2F4A8A;
  /* background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1)); */
  display: block; }
  /* line 18, style.scss */
  .wrapper .header .top-header {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto; }
  /* line 22, style.scss */
  .wrapper .header .top-header .logo a img {
  width: auto;
  height: auto;
  padding: 5px 10px; }
  /* line 32, style.scss */
  .w-input {
  max-width: 150px; }
  /* line 35, style.scss */
  .datetime, .forgot {
  text-align: left; }
  /* line 38, style.scss */
  .codep {
  position: relative; }
  /* line 41, style.scss */
  .codes {
  position: absolute;
  top: 0;
  right: 8px;
  font-size: 1.0rem;
  font-weight: bold;
  padding: 7px 0;
  z-index: 1; }
  /* line 50, style.scss */
  .language {
  padding: 0 5px;
  margin-top: -5px; }
  /* line 54, style.scss */
  .language button img {
  width: 20px; }
  /* line 59, style.scss */
  .bg-nav {
      width: 100%;
      height: auto;
      text-align: center;
      margin: 0 auto;
      display: block;
      --tw-bg-opacity: 1;
      /* background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)); */
      background: #2F4A8A;
  }
  /* line 67, style.scss */
  .menu_ {
  width: unset;
  overflow: unset; }
  /* line 70, style.scss */
  .menu_ ul {
  width: 100%;
  display: flex; }
  /* line 73, style.scss */
  .menu_ ul li {
  flex: 1;
  display: inline-block; }
  /* line 76, style.scss */
  .menu_ ul li a {
  padding: 15px 0;
  text-align: center;
  margin: 0 auto;
  font-size: 1.0rem;
  color: #fff;
  font-weight: bold;
  display: block; }
  .menu_ ul li a.active {
  color: rgb(255 129 0/var(--tw-text-opacity,1))  !important;
  border-bottom: 4px solid  rgb(255 129 0/var(--tw-text-opacity,1));
  }
  /* line 86, style.scss */
  .menu_ ul li:hover {
  color: #fff;
  font-weight: 700;
  text-decoration: none; }
  /* line 93, style.scss */
  .menu_ ul li:hover > .sub-menu-container {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: block; }
  /* line 99, style.scss */
  .sub-menu-container {
  z-index: 2;
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: 0px;
  overflow: hidden;
  display: none;
  background-color: #005363;
  box-shadow: 0 0 50px #000;
  cursor: auto; }
  /* line 111, style.scss */
  .sub-menu-container2 {
  z-index: 2;
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: 0;
  overflow: hidden;
  display: none;
  opacity: 0.9;
  cursor: auto; }
  /* line 122, style.scss */
  .thumbnails-bg {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto; }
  /* line 127, style.scss */
  .thumbnails-bg a {
  position: relative;
  display: block;
  /* height: 245px; */
  background-size: cover; }
  /* line 132, style.scss */
  .thumbnails-bg a img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; }
  /* line 136, style.scss */
  .thumbnails-bg a span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 15px;
  transition-duration: 0.3s;
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold; }
  /* line 151, style.scss */
  .thumbnails-bg a:hover {
  transform: translateY(5px); }
  /* line 153, style.scss */
  .thumbnails-bg a:hover > span {
  transform: translateY(-10px); }
  /* .nav_link {
  text-decoration: none;
  padding: 5px 5px;
  position: relative;
  z-index: 0;
  cursor: pointer;
  text-transform: uppercase;
  }
  .nav_link:after,
  .nav_link:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: orange;
  content: "";
  opacity: 0;
  transition: all 0.3s;
  }
  .nav_link:before {
  top: 0;
  transform: translateY(10px);
  }
  .nav_link:after {
  bottom: 0;
  transform: translateY(-10px);
  }
  .nav_link:hover:after,
  .nav_link:hover:before {
  opacity: 1;
  transform: translateY(0);
  } */
  /**************   footer *************************/
  /* line 189, style.scss */
  .bg-footers {
      background: #2F4A8A;
      border-top: 2px solid #2F4A8A;
      /* background-color: rgb(235 240 246 / var(--tw-bg-opacity, 1)); */
    }
  /* line 193, style.scss */
  .footerpc {
  padding: 5px 0; }
  /* line 196, style.scss */
  .info-footer h3, .community h3 {
  text-align: left;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 5px 0;
  display: block; }
  /* line 203, style.scss */
  .info-footer ul {
  width: 100%;
  height: auto;
  display: block; }
  /* line 208, style.scss */
  .info-footer ul li {
  display: block;
  padding: 2px 2px;
  text-align: left; }
  /* line 213, style.scss */
  .info-footer ul li a {
  color: #ffffff;
  font-size: 0.7rem; }
  /* line 217, style.scss */
  .community ul {
  width: 100%;
  height: auto; }
  /* line 221, style.scss */
  .community ul li {
  display: inline-block;
  padding: 2px;
  text-align: left; }
  /* line 226, style.scss */
  .community ul li a img {
  width: 40px;
  text-align: center; }
  /* line 230, style.scss */
  .title-section {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 5px 0;
  color: #ffffff;
  display: block; }
  /* line 240, style.scss */
  .networks ul {
  width: 100%;
  height: auto;
  text-align: left;
  display: block; }
  /* line 246, style.scss */
  .networks ul li {
  display: inline-block;
  margin: 5px; }
  /* line 250, style.scss */
  .networks ul li a img {
  width: 35px;
  height: auto; }
  /* line 254, style.scss */
  .sponsorship ul {
  width: 100%;
  height: auto;
  text-align: left;
  display: block; }
  /* line 260, style.scss */
  .sponsorship ul li {
  display: inline-block;
  padding: 5px 15px; }
  /* line 264, style.scss */
  .sponsorship ul li a img {
  height: 70px;
  width: auto; }
  /**************  End footer *************************/
  /* line 269, style.scss */
  .pc {
  display: block; }
  /* line 272, style.scss */
  .m {
  display: none; }
  /* line 275, style.scss */
  .announment {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  display: block; }
  /* line 282, style.scss */
  .section {
  width: 100%;
  height: auto;
  color: white;
  text-align: center;
  position: relative;
  display: flex; 
  /* background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1)); */
  background: #2F4A8A;
  }
  /* line 289, style.scss */
  .section .announment {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  /* background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1)); */
  /* border-radius: 10px; */
  background: #2F4A8A;
  overflow: hidden;
  height: 30px;
  display: block; }
  /* line 298, style.scss */
  .section .announment .icon {
    display: none;
      position: absolute;
      padding: 3px 15px;
     background-color: rgb(255 129 0 / var(--tw-bg-opacity, 1));
      z-index: 1;
      color: #fff;
      width: 100px;
      height: 30px;
      padding: 9px;
    }
  /* line 304, style.scss */
  .section .announment span {
  width: 10px;
  height: 50px;
  /* background: #0dcaf0; */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1; }
  /* line 314, style.scss */
  .section .announment marquee {
  padding: 5px 0;
  font-size: 1.0rem; }
  /* line 319, style.scss */
  .section p.s-title {
  width: 100%;
  text-align: left;
  padding: 10px 5px;
  font-size: 1.0rem;
  font-weight: bold;
  vertical-align: middle;
  display: block; }
  /* line 327, style.scss */
  .section p.s-title span {
  margin-right: 5px; }
  /* line 332, style.scss */
  .item-recommend-games {
  width: 100%;
  height: auto;
  background: #0dcaf0 url("../images/getimgs.svg") no-repeat;
  position: relative;
  border-radius: 10px;
  transition: 1s; }
  /* line 339, style.scss */
  .item-recommend-games a {
  width: 100%;
  height: auto;
  display: block; }
  /* line 343, style.scss */
  .item-recommend-games a .item-recommend {
  width: 100%;
  height: auto;
  text-align: right;
  padding-top: 50px;
  display: block; }
  /* line 349, style.scss */
  .item-recommend-games a .item-recommend img {
  width: 100%;
  max-width: 300px;
  height: auto; }
  /* line 355, style.scss */
  .item-recommend-games a .info-recommend {
  width: 100%;
  max-width: 250px;
  height: auto;
  padding: 20px 20px;
  position: absolute;
  left: 0;
  top: 0;
  display: block; }
  /* line 364, style.scss */
  .item-recommend-games a .info-recommend h3 {
  width: 100%;
  height: auto;
  font-size: 1.1rem;
  color: #ffffff;
  padding: 5px 0;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase; }
  /* line 374, style.scss */
  .item-recommend-games a .info-recommend p {
  width: 100%;
  height: auto;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: left;
  color: #ffffff;
  display: block; }
  /* line 386, style.scss */
  .item-recommend-games:hover {
  background: #0094b1 url("../images/getimgs.svg") no-repeat;
  display: block; }
  /* line 390, style.scss */
  .top-rated-game {
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 5px; }
  /* line 394, style.scss */
  .top-rated-game .top-rated {
  position: relative; }
  /* line 396, style.scss */
  .top-rated-game .top-rated img {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden; }
  /* line 404, style.scss */
  .top-rated-game .top-rated .middle-rated {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center; }
  /* line 415, style.scss */
  .top-rated-game .top-rated:hover .images-rated {
  opacity: 0.3; }
  /* line 418, style.scss */
  .top-rated-game .namegame {
  color: #ffffff; }
  /* line 422, style.scss */
  .top-rated:hover .middle-rated {
  opacity: 1; }
  /* line 425, style.scss */
  .btn-block {
  width: 100%;
  height: auto;
  display: block; }
  /* line 430, style.scss */
  .list-info-download {
  width: 100%;
  height: auto; }
  /* line 433, style.scss */
  .list-info-download ul {
  width: 100%;
  height: auto;
  padding: 10px 0;
  text-align: left; }
  /* line 438, style.scss */
  .list-info-download ul li {
  color: #272727;
  padding: 10px 0;
  vertical-align: middle;
  display: block; }
  /* line 443, style.scss */
  .list-info-download ul li span {
  margin-right: 5px; }
  /* line 449, style.scss */
  .title-download {
  font-size: 1.1rem;
  text-align: left; }
  /* line 453, style.scss */
  .qr {
  width: 100%;
  height: auto;
  padding: 25px 25px;
  display: block; }
  /* line 459, style.scss */
  .qr-code {
  width: 100%;
  padding: 25px;
  text-align: center;
  margin: 0 25px;
  height: auto;
  background: url(../images/download/border-app.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 10px;
  display: block; }
  /* line 469, style.scss */
  .qr-code img {
  width: 100%;
  border-radius: 10px; }
  /* line 474, style.scss */
  .btn-app {
  width: 100%;
  margin: 15px 25px;
  font-weight: bold; }
  /* line 479, style.scss */
  .bg-banner-download {
  width: 100%;
  height: 420px;
  background: url("../images/download/getimgs.webp") no-repeat center bottom;
  overflow: hidden;
  margin-top: 80px;
  position: relative;
  display: block; }
  /* line 487, style.scss */
  .bg-banner-download .bg-rotate {
  width: 100%;
  height: auto;
  display: block; }
  /* line 491, style.scss */
  .bg-banner-download .bg-rotate img {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 50px;
  display: block; }
  /* line 499, style.scss */
  .bg-banner-download .bg-rotate .spin {
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }
  @keyframes spin {
  from {
  transform: rotate(0deg); }
  to {
  transform: rotate(360deg); } }
  /* line 514, style.scss */
  .bg-banner-download .banner-download {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 0;
  bottom: 10px;
  display: block; }
  /* line 524, style.scss */
  .bg-banner-download .banner-download .float {
  animation: float 6s ease-in-out infinite; }
  @keyframes float {
  0% {
  -webkit-filter: drop-shadow(10px 15px 5px #222);
  filter: drop-shadow(10px 15px 5px #222);
  transform: translatey(0px); }
  50% {
  -webkit-filter: drop-shadow(25px 15px 15px #222);
  filter: drop-shadow(25px 15px 15px #222);
  transform: translatey(-20px); }
  100% {
  -webkit-filter: drop-shadow(10px 15px 5px #222);
  filter: drop-shadow(10px 15px 5px #222);
  transform: translatey(0px); } }
  /* line 551, style.scss */
  .box {
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  text-align: right;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 10px;
  margin-bottom: 7px;
  background: url("../images/getimgs.svg") no-repeat; }
  /* line 565, style.scss */
  .box img {
  width: 100%;
  height: 100%; }
  /* line 569, style.scss */
  .box:before, .box:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffc107;
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease; }
  /* line 581, style.scss */
  .box:before {
  -webkit-transform: skew(30deg) translateX(80%);
  transform: skew(30deg) translateX(80%); }
  /* line 585, style.scss */
  .box:after {
  -webkit-transform: skew(-30deg) translateX(70%);
  transform: skew(-30deg) translateX(70%); }
  /* line 589, style.scss */
  .box:hover:before, .box.hover:before {
  -webkit-transform: skew(30deg) translateX(30%);
  transform: skew(30deg) translateX(30%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s; }
  /* line 595, style.scss */
  .box:hover:after, .box.hover:after {
  -webkit-transform: skew(-30deg) translateX(20%);
  transform: skew(-30deg) translateX(20%); }
  /* line 599, style.scss */
  .box .box-content {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  bottom: 0;
  padding: 20px 20px 20px 40%; }
  /* line 609, style.scss */
  .box .box-content:before, .box .box-content:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #eab129;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  opacity: 0.5;
  z-index: -1;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease; }
  /* line 623, style.scss */
  .box .box-content:before {
  -webkit-transform: skew(30deg) translateX(100%);
  transform: skew(30deg) translateX(100%); }
  /* line 627, style.scss */
  .box .box-content:after {
  -webkit-transform: skew(-30deg) translateX(90%);
  transform: skew(-30deg) translateX(90%); }
  /* line 631, style.scss */
  .box:hover .box-content:before, .box.hover .box-content:before {
  -webkit-transform: skew(30deg) translateX(50%);
  transform: skew(30deg) translateX(50%);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s; }
  /* line 637, style.scss */
  .box:hover .box-content:after, .box.hover .box-content:after {
  -webkit-transform: skew(-30deg) translateX(40%);
  transform: skew(-30deg) translateX(40%);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s; }
  /* line 643, style.scss */
  .box h3, .box p {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px; }
  /* line 648, style.scss */
  .box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase; }
  /* line 654, style.scss */
  .box p {
  font-size: 15px; }
  /* line 657, style.scss */
  .box:hover h3, .box.hover h3, .box:hover p, .box.hover p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.9; }
  /* line 662, style.scss */
  .bg-casino {
  background: url(../images/lobby/casino/casino-lobby-bg.png) no-repeat;
  background-size: 100% 100%;
  display: block; }
  /* line 667, style.scss */
  .bg-slots {
  background: url("../images/lobby/slot/slot-lobby-bg.png") no-repeat;
  background-size: 100% 100%;
  display: block; }
  /* line 672, style.scss */
  .bg-poker {
  background: url("../images/lobby/poker/bg.png") no-repeat;
  background-size: 100% 100%;
  display: block; }
  @media only screen 
  and (device-width: 768px) 
  and (max-device-height: 1024px)
  and (-webkit-min-device-pixel-ratio: 1)
  and (orientation: portrait) {
    .pc {
      display: none !important; }
      /* line 681, style.scss */
      .m {
      display: block; }
  }
  @media (max-width: 600px) {
  /* line 678, style.scss */
  .pc {
  display: none !important; }
  /* line 681, style.scss */
  .m {
  display: block; }
  /* line 684, style.scss */
  .logo a img {
  width: 150px !important;
  height: auto;
  padding: 5px 10px; }
  /* line 690, style.scss */
  .language button {
  background: #0dcaf0 !important;
  border: none !important; }
  /* line 693, style.scss */
  .language button img {
  width: 25px;
  height: auto; }
  /* line 699, style.scss */
  .item-recommend-games {
  width: 100%;
  height: auto;
  background: #0dcaf0 url("../images/getimgs.svg") no-repeat;
  position: relative;
  border-radius: 5px !important;
  transition: 1s; }
  /* line 706, style.scss */
  .item-recommend-games a {
  width: 100%;
  height: auto;
  display: block; }
  /* line 710, style.scss */
  .item-recommend-games a .item-recommend {
  width: 100%;
  height: auto;
  text-align: right;
  padding-top: 15px !important;
  display: block; }
  /* line 716, style.scss */
  .item-recommend-games a .item-recommend img {
  width: 100%;
  max-width: 300px;
  height: auto; }
  /* line 722, style.scss */
  .item-recommend-games a .info-recommend {
  width: 100%;
  max-width: 200px;
  height: auto;
  padding: 10px 10px;
  position: absolute;
  left: 0;
  top: 0;
  display: block; }
  /* line 731, style.scss */
  .item-recommend-games a .info-recommend h3 {
  width: 100%;
  height: auto;
  font-size: 0.9rem;
  color: #ffffff;
  padding: 5px 0;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase; }
  /* line 741, style.scss */
  .item-recommend-games a .info-recommend p {
  width: 100%;
  height: auto;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: left;
  color: #ffffff;
  display: block; }
  /* line 753, style.scss */
  .top-rated-game {
  overflow: hidden;
  border-radius: 10px; }
  /* line 757, style.scss */
  .sponsorship ul li a img {
  height: 40px;
  width: auto; }
  /* line 761, style.scss */
  .btn-lo-re {
  border-radius: 0px !important; }
  /* line 764, style.scss */
  .container {
  /* padding: 5px !important; */
   }
  /* line 767, style.scss */
  .networks ul li a img {
  width: 25px;
  height: auto; }
  /* line 771, style.scss */
  .footer-mobile {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  display: block; }
  /* line 784, style.scss */
  .btn-footer {
  white-space: nowrap;
  font-size: 0.7rem; }
  /* line 787, style.scss */
  .btn-footer i {
  margin-right: 5px; }
  /* line 791, style.scss */
  .offcanvas {
  --bs-offcanvas-width: 300px !important; }
  /* line 795, style.scss */
  .nav-m p {
  font-size: 0.9rem;
  font-weight: bold;
  text-align: left;
  padding: 10px 5px;
  display: block; }
  /* line 802, style.scss */
  .nav-m ul {
  width: 100%;
  height: auto;
  text-align: left;
  display: block; }
  /* line 807, style.scss */
  .nav-m ul li {
  width: 100%;
  height: auto;
  background: #007f99;
  margin: 5px auto;
  border-radius: 7px;
  vertical-align: middle;
  display: block; }
  /* line 815, style.scss */
  .nav-m ul li a {
  width: 100%;
  height: auto;
  text-align: left;
  padding: 7px 10px;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: bold;
  vertical-align: middle;
  display: block; }
  /* line 825, style.scss */
  .nav-m ul li a i {
  margin-right: 5px;
  vertical-align: middle; }
  /* line 828, style.scss */
  .nav-m ul li a i img {
  width: 20px; }
  /* line 837, style.scss */
  .nav-m-2 p {
  font-size: 0.9rem;
  font-weight: bold;
  text-align: left;
  padding: 10px 5px;
  display: block; }
  /* line 844, style.scss */
  .nav-m-2 ul {
  width: 100%;
  height: auto;
  text-align: left;
  display: block; }
  /* line 849, style.scss */
  .nav-m-2 ul li {
  width: 100%;
  height: auto;
  background: #007f99;
  margin: 5px auto;
  border-radius: 7px;
  vertical-align: middle;
  display: block; }
  /* line 857, style.scss */
  .nav-m-2 ul li a {
  width: 100%;
  height: auto;
  text-align: left;
  padding: 7px 10px;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: bold;
  vertical-align: middle;
  display: block; }
  /* line 867, style.scss */
  .nav-m-2 ul li a i {
  margin-right: 5px;
  vertical-align: middle; }
  /* line 870, style.scss */
  .nav-m-2 ul li a i img {
  width: 20px; }
  /* line 878, style.scss */
  .btn-footer i img {
  width: 20px; }
  /* line 881, style.scss */
  .bg-footers {
  padding-bottom: 20px; }
  /* line 884, style.scss */
  .section .announment marquee {
  padding: 0px 0;
  font-size: 1.0rem;
  padding-top: 5px; }
  /* line 889, style.scss */
  .thumbnails-bg {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto; }
  /* line 894, style.scss */
  .thumbnails-bg a {
  position: relative;
  display: block;
  /* height: 135px !important; */
  background-size: cover; }
  /* line 899, style.scss */
  .thumbnails-bg a img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; }
  /* line 903, style.scss */
  .thumbnails-bg a span {
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 15px;
  transition-duration: 0.3s;
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold; }
  /* line 919, style.scss */
  .thumbnails-bg a:hover {
  transform: translateY(5px); }
  /* line 921, style.scss */
  .thumbnails-bg a:hover > span {
  transform: translateY(-10px); }
  /* line 924, style.scss */
  .lobby-section {
  width: 100%;
  height: auto;
  padding: 10px 0;
  display: block; } }
  #loginForm
  {
  background: linear-gradient(to right, #000000, #002b50);
  width: 100%;
  padding: 20px;
  justify-content: center;
  position: relative;
  overflow: hidden !important;
  height: 57px;
  margin-top: -4%;
  }
  .form-container {
  display: none;
  gap: 10px;
  align-items: center;
  transition: all 0.3s ease;
  }
  .form-container input {
  padding: 8px;
  border-radius: 5px;
  border: none;
  width: 150px;
  }
  .code-number {
  color: white;
  margin-right: 10px;
  }
  .btn {
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  }
  .btn-login {
      color: white;
      background-color: #333333;
      padding: 8px 8px;
      border-radius: 5px;
      margin: 0px 0px;
      font-size: 18px;
      margin-left: 5px;
      text-transform: uppercase;
      font-family: sans-serif;
  }
  .btn-register {
      color: white;
      background-color: #FF8C00 !important;
      padding: 8px 8px;
      border-radius: 5px;
      margin: 0px 0px;
      font-size: 18px;
      margin-left: 5px;
      text-transform: uppercase;
      font-family: sans-serif;
  }
  a.btn.btn-signin {
  position: relative;
  z-index: 2;
  padding: 4px 20px;
  margin: 10px auto;
  transition: transform 0.3s;
  border: 1px solid;
  width: 130px;
  }
  a.btn.btn-signin {
  margin-left: 5px;
  }
  .col-auto a{
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  }
  #loginForm a {
  font-family: sans-serif;
  color: #fff;
  padding: 10px 15px;
  font-size: 17px;
  font-weight: bold;
  }
  h1.modal-title.fs-5 {
    color: #fff;
    text-transform: uppercase;
  }
  button.btn.btn-light.btn-outline-success.shadow.btn-loginnow {
      background-color: rgb(255 129 0 / var(--tw-bg-opacity, 1));
  }
  /* Hide on mobile (screen width <= 768px) */
  @media (max-width: 768px) {
  .language {
  display: none;
  }
  }
  /* Show on desktop (screen width > 768px) */
  @media (min-width: 769px) {
  .language {
  display: block;
  }
  }
  /* Hide by default */
  .section_m{
  display: none;
  }
  /* Show only on mobile (max-width 768px, you can change breakpoint) */
  @media (max-width: 768px) {
  .section_m{
  display: block;
  padding: 5px;
  }
  }
  .s-title{
  text-align: justify;
  }
  .sport-h {
      width: 100%;
      height: 55vh; /* full viewport height */
      background: url("../images/bg-gamesport.png") no-repeat center center;
      background-size: cover; /* make the image cover full screen */
          padding: 90px;
  }
  .casino-h {
      width: 100%;
      height: 55vh; /* full viewport height */
      background: url("../images/bg-casinohome.png") no-repeat center center;
      background-size: cover; /* make the image cover full screen */
          padding: 90px;
  }
  .lottery-h {
      width: 100%;
      height: 55vh; /* full viewport height */
      background: url("../images/bg-lottery.png") no-repeat center center;
      background-size: cover; /* make the image cover full screen */
          padding: 90px;
  }
  .slot-h {
      width: 100%;
      height: 55vh; /* full viewport height */
      background: url("../images/bg-slot.png") no-repeat center center;
      background-size: cover; /* make the image cover full screen */
          padding: 90px;
  }
  .tiltegame h1 {
  font-size: 30px;
  }
  .section p {
  font-family: sans-serif;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
  color: #fff;
  }
  .btn_ {
  background-color: rgb(255 129 0 / var(--tw-bg-opacity, 1));
  border-radius: 5px;
  border: 2px solid transparent;
  padding: 10px 10px;
  font-size: 18px !important;
  border-radius: 10px;
  color: #fff;
  }

  /* Base style */
  .support-bank {
    text-align: center;
    padding: 15px;
  }
  
  .support-bank h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
  }
  
  .support-bank .bank1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .support-bank {
      padding: 10px;
    }
  
    .support-bank h3 {
      font-size: 18px;
    }
  
    .support-bank .bank1 {
      padding: 8px;
    }
  }
  
  /* Small screen (phones) */
  @media (max-width: 480px) {
    .support-bank h3 {
      font-size: 16px;
    }
    .btn-login, .btn-register{
      font-size: 10px;
    }
  }
  span.code {
      position: absolute;
      top: 120px;
      right: 40px;
      color: #000;
  }
  .modal-content{
        background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
        border: 2px solid #f90  !important;
  }
  .text-success{
      color: rgb(255 129 0 / var(--tw-bg-opacity, 1)) !important;
      text-decoration: underline;
  }
  
  /* sport */
  .sports {
  width: 100%;
  background: #2F4A8A;
  }
  .text-sport h1, .text-sportright h1 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding-top: 10px;
  }
  .text-sport p, .text-sportright p {
  font-size: 16px;
  color: #fff;
  padding: 15px;
  line-height: 20px;
  }
  .btn-warning_sport {
      background-color: rgb(255 129 0 / var(--tw-bg-opacity, 1)) !important;
      border-radius: 5px !important;
      border: 2px solid transparent !important;
      margin-top: 10px;
      padding: 5px 11px !important;
      font-size: 14px !important;
  }
  .text-sportright {
  width: 100%;
  text-align: center;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));border-radius: 0px 0px 10px 10px;
  padding-bottom: 10px;
  }
  .lobby-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  }
  .game-box {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  }
  .game-box:hover {
  transform: translateY(-5px);
  }
  .game-box img {
  width: 100%;
  /* max-height: 150px; */
  object-fit: contain;
  }
  .game-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  }
  @media (max-width: 768px) {
  .lobby-container {
  grid-template-columns: 1fr;
  background: #000;
  }
  }
  /* sport */
  .d-flex.justify-content-between.align-items-center.forms {
  position: absolute;
  right: 11%;
  margin-top: -1%;
  }
  .list-inline-item a{
  color:#fff;
  }
  .lobby_ {
  max-width: 1200px;
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  display: block;}
  .gamecasino {
  width: 100%;
  padding-bottom: 30px;
  background: #2F4A8A;
  }
  /* slot */
  .slot-game{
  width:100%;
    background: #2F4A8A;
  }
  .bg-casino {
  /* background: url(../images/lobby/casino/casino-lobby-bg.png) no-repeat; */
  background-size: 100% 100%;
  display: block; }
  /* line 667, style.scss */
  .bg-slots {
  background: url("../images/lobby/slot/slot-lobby-bg.png") no-repeat;
  background-size: 100% 100%;
  display: block; }
  /* line 672, style.scss */
  .bg-poker {
  background: url("../images/lobby/poker/bg.png") no-repeat;
  background-size: 100% 100%;
  display: block; }
  
  .text1{
      position: absolute;
      font-size: 20px;
      width: 280px;
      text-align: center;
      top: 270px;
      /* z-index: 10000; */
      text-align: center;
      font-weight: 700;
      color: white;
  }
    .cover-search .cv-user {
      width: 60%;
      line-height: 24px;
    }
    .cv-user span{
      margin-left: 1px !important;
      color: #fff !important;
    }
    /*  */
      /* ===== Layout ===== */
    .dstg-middle-separate{
    display:grid;
    grid-template-columns: 29.5% 1% 69.5%;
    }
    /* ===== Box Style ===== */
    .dstg-img-wrapper{
    border:2px dashed #fff;
    margin-bottom:20px;
    padding:20px;
    }
    .dstg-title-box{
    border-bottom:2px dashed #fff;
    color:#fff;
    margin:5px 0;
    padding-bottom:5px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    }
    .dstg-title-box .dstg-icon{
    font-size:20px;
    width:45px;
    text-align:center;
    }
    .dstg-title{
    padding:5px 0;
    font-size:16px;
    font-weight:400;
    font-family:'Quicksand',sans-serif;
    display:flex;
    align-items:center;
    }
    /* ===== Images ===== */
    .dstg-img-content{
    margin:20px auto;
    }
    .dstg-content-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    }
    .dstg-img{
    max-width:120px;
    width:auto;
    height:fit-content;
    }
    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width:768px){
    .dstg-middle-separate{
    grid-template-columns:100%;
    gap:15px;
    padding: 5px;
    }
    /* hide middle space column */
    .dstg-middle-separate > div:nth-child(2){
    display:none;
    }
    .dstg-title{
    font-size:14px;
    }
    .dstg-content-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    text-align:center;
    }
    .dstg-img{
    max-width:100%;
    }
    }
    /* contact us */
       .contact-section {
   display: flex;
   flex-direction: column;
   width: 50px;
   text-align: center;
   border-radius: 30px;
   position: fixed;
   gap: 15px;
   bottom: 120px;
   right: 0.5rem;
   transition: background-color .3s, opacity .5s, visibility .5s;
   z-index: 9999999999;
   cursor: pointer;
   }
  .contact-section img {
   width: 40px;
   height: 40px;
   }
   /* Show only on mobile */
   @media (max-width: 768px) {
   .contact-section {
   display: flex;
   justify-content: center;
   gap: 10px;
   }
   .contact-section img {
   width: 40px;
   height: 40px;
   }
   .header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 6px;
    margin-bottom: 5px;
 }
 .btn-logout {
 padding: 6px 5px;
 margin-right: 4px;
 background: #ffdf1b;
 border-radius: 4px;
 }
 btn-logout span {
 color: #666;
 }
 .p-2 {
 padding: .5rem !important;
 }
 .text-yellow {
 color: #fff351;
 }
 .badge {
 display: inline-block;
 padding: .25em .4em;
 font-size: 75%;
 font-weight: 700;
 line-height: 1;
 text-align: center;
 white-space: nowrap;
 vertical-align: baseline;
 border-radius: .25rem;
 transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
 }
 .badge-danger {
 color: #fff;
 background-color: #dc3545;
 }
 .navbar-badge {
 font-size: .6rem;
 font-weight: 300;
 padding: 2px 4px;
 position: absolute;
 right: -2px;
 top: 5px;
 }
   }
   .main-page{
    background: #2F4A8A;
   }