.dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-color: #108ee9 !important;
  box-sizing: border-box;
}
.card-container {
  background: linear-gradient(180deg, #531114, #210608);
  border: 1px solid #dca544;
}
.brand {
  position: relative;
  background-image: url(/_next/static/media/bg.7b3527ed.png);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  padding: 65px 0;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .brand {
    padding: 92px 0 65px;
  }
}
.brand img {
  -webkit-user-drag: none;
  user-drag: none;
}
.brand .detail-list {
  margin: auto;
  padding: 14px;
  width: 100%;
}
@media (min-width: 1025px) {
  .brand .detail-list {
    padding: 0;
    width: 924px;
  }
}
.brand .detail-list .item-col {
  width: 100%;
  display: grid;
  row-gap: 10px;
  column-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}
@media (min-width: 1025px) {
  .brand .detail-list .item-col {
    width: 288px;
    grid-template-columns: none;
    column-gap: 0;
    row-gap: 24px;
  }
}
.brand .detail-list .box {
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  border: 4px solid #108ee9;
  position: relative;
  transition: transform 0.3s linear;
  z-index: 98;
  overflow: hidden;
}
.brand .detail-list .box:hover {
  transform: translateY(-4px);
}
.brand .detail-list .box .title {
  font-size: 28px;
  line-height: 36px;
  color: #108ee9;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.brand .detail-list .box .title:before {
  content: "";
  width: 35%;
  height: 4px;
  background: #108ee9;
  position: absolute;
  bottom: 10px;
  left: 0;
  transition: width 0.3s linear;
}
.brand .detail-list .box:hover .title:before {
  width: 50%;
}
.brand .detail-list .box .description {
  font-size: 12px;
  color: gray;
  line-height: 14px;
}
.brand .detail-list .box:hover .description {
  color: #333;
}
@media (min-width: 1025px) {
  .brand .detail-list .box .description {
    font-size: 16px;
    line-height: 18px;
  }
}
.circular-progress {
  text-align: center;
  position: relative;
  max-width: 152px;
  max-height: 152px;
  margin: 24px auto;
}
.circular-progress img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@keyframes rotate_progress {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.circular-progress.rotate img {
  animation: rotate_progress 0.4s linear;
  animation-delay: 0.33s;
}
.circular-progress .pic {
  width: 70%;
  height: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  position: absolute;
  background-color: #fff;
  border-radius: 100%;
}
@keyframes scale_progress {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0);
  }
  80% {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.circular-progress.rotate .pic {
  animation: scale_progress 1s ease-in-out;
}
.number-progress .item .percentage {
  color: gray;
}
.number-progress .item .color {
  width: 16px;
  height: 16px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 8px;
}
.number-progress .item .text {
  color: gray;
}
.platform-games {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 8px;
  position: relative;
  min-height: 183px;
}
@media (min-width: 1025px) {
  .platform-games {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 6px;
  }
}
@keyframes scale_platform_games {
  0% {
    transform: scale(1);
  }
  18% {
    transform: scale(0.8);
  }
  36% {
    transform: scale(1);
  }
}
.platform-games img {
  animation: scale_platform_games 7s ease-in-out infinite;
}
.brand .certified-fairness img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85px;
}
@media (min-width: 1025px) {
  .brand .certified-fairness img {
    width: 139px;
  }
}
.brand .self-developed-games {
  background: #fff;
  overflow: hidden;
}
.self-games-place {
  margin-top: 20px;
  height: 86px;
  position: relative;
}
.self-games-place .game-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.self-games-place .game-list .overflow {
  width: 400px;
  display: flex;
  transform: translateX(-100px);
  transition: transform 0.15s linear;
}
.self-games-place .game-list .overflow.active {
  transform: translateX(-20px);
  transition: none;
}
.self-games-place .game-list .overflow img {
  display: inline-block;
  margin-right: 14px;
  opacity: 0.25;
  transition: opacity 0.15s linear;
  width: 60px;
}
@keyframes opacity {
  0% {
    opacity: 0.25;
    width: 60px;
    height: 69px;
    top: 0;
  }
  to {
    opacity: 1;
    width: 80px;
    height: 95px;
    top: -10px;
  }
}
.self-games-place .game-list .overflow.active img:nth-child(2) {
  animation: opacity 0.15s linear forwards;
  width: 80px;
  top: -10px;
  height: 95px;
  opacity: 1;
  position: relative;
}
.brand .advanced-anti-cheat .avatar,
.brand .agent-rewards .avatar,
.brand .big-data-analytics .avatar {
  height: 150px;
}
.brand .advanced-anti-cheat .avatar img,
.brand .agent-rewards .avatar img,
.brand .big-data-analytics .avatar img {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
}
.brand .professional-cst {
  position: relative;
}
.brand .professional-cst img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 270px;
}
.brand .agent-rewards .subject {
  display: flex;
  color: #108ee9;
  align-items: center;
  padding-bottom: 6px;
}
.brand .agent-rewards .subject .title:before {
  content: "";
  right: -16px;
  left: auto;
  height: 80%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  transition: height 0.3s linear;
}
.brand .agent-rewards .subject .title {
  padding-bottom: 0;
  margin-right: 32px;
  position: relative;
}
.brand .agent-rewards:hover .subject .title:before {
  height: 100%;
}
.brand .detail-list .box:hover .titles:before {
  width: 2px !important;
}
.brand .advanced-anti-cheat:hover img,
.brand .agent-rewards:hover img,
.brand .analytics:hover img,
.brand .certified-fairness:hover img,
.brand .professional-cst:hover img {
  -webkit-filter: brightness(110%) contrast(110%);
  filter: brightness(110%) contrast(110%);
}
.item-list .box {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #108ee9;
  transition: transform 0.3s linear;
  height: 210px;
  overflow: hidden;
  position: relative;
}
.item-list .box .title {
  color: #108ee9;
  line-height: 32px;
  font-size: 16px;
  position: relative;
  margin-bottom: 8px;
}
.item-list .box .title:before {
  content: "";
  width: 22%;
  height: 4px;
  background: #108ee9;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s linear;
}
.item-list .box .description {
  color: gray;
  font-size: 14px;
}
.mobile-only {
  width: 130%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .mobile-only {
    width: 180%;
  }
}
@media (max-width: 450px) {
  .mobile-only {
    width: 220%;
  }
}
.mobile-only .box {
  height: 240px;
}
.mobile-only .mobileSwiper .swiper-slide {
  transition: transform 0.3s ease;
}
.mobile-only .mobileSwiper .swiper-slide-active {
  transform: scale(1);
  z-index: 1;
}
.mobile-only .mobileSwiper .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.8);
  opacity: 0.5;
  z-index: 0;
}
.number-progress .item {
  font-size: 12px;
  padding-left: 5px;
  line-height: 14px;
  padding-bottom: 10px;
}
.brand .platform-integration .description {
  padding-bottom: 12px;
}
.mobile-only .custom-pagination {
  display: flex;
  justify-content: center;
}
.mobile-only .custom-pagination .pagination-bullet {
  width: 28px;
  height: 26px;
  box-sizing: border-box;
  padding: 4px 5px;
  cursor: pointer;
}
.mobile-only .custom-pagination .pagination-bullet div {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border-color: rgba(16, 142, 233, 0.8) !important;
  box-sizing: border-box;
  padding: 5px;
  transition: all 0.3s ease;
}
.mobile-only .custom-pagination .pagination-bullet div span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(255, 10, 10, 0);
  border: 1px solid #108ee9;
}
.mobile-only .custom-pagination .pagination-bullet-active div {
  border: 1px solid rgba(16, 142, 233, 0.8);
  padding: 2px;
}
.mobile-only .custom-pagination .pagination-bullet-active div span {
  background: #108ee9;
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border-radius: 50%;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top: 4px solid transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.download-container {
  background-image: url(/_next/static/media/bg.48212766.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50%;
}
.eran-container {
  background: url(/_next/static/media/bg.ef0aaaf5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-blend-mode: overlay;
}
.game .description {
  max-width: 1146px;
}
.container {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.game .game-list-placeholder {
  height: 1242px;
}
.game .game-list {
  width: 1146px;
  height: 1242px;
  display: grid;
  margin: auto;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 24px;
  column-gap: 24px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.game .game-list .item-col {
  display: grid;
  row-gap: 24px;
  opacity: 0;
}
.game .game-list .item-col.move {
  opacity: 1;
}
.game .game-list .box {
  background: #181819 !important;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
}
.game .game-list .box img {
  color: rgba(0, 0, 0, 0);
  display: block;
  line-height: 0;
}
.game .game-list .box img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  -webkit-filter: brightness(110%) contrast(110%);
  filter: brightness(110%) contrast(110%);
}
.game .game-list .game-item-col-0.move {
  transition: transform 33.2s linear;
  transform: translateY(-100%);
}
.game .game-list .game-item-col-1.move {
  transition: transform 35s linear;
  transform: translateY(-100%);
}
.game .game-list .game-item-col-2.move {
  transition: transform 32.8s linear;
  transform: translateY(-100%);
}
.game .game-list .game-item-col-3.move {
  transition: transform 36.6s linear;
  transform: translateY(-100%);
}
.game .game-list .game-item-col-4.move {
  transition: transform 30s linear;
  transform: translateY(-100%);
}
.game .TouchTheEdge {
  position: absolute;
  width: 120px;
  top: -1px;
  bottom: -1px;
  z-index: 999;
}
@media screen and (min-width: 1280px) {
  .game .TouchTheEdge {
    display: none;
  }
}
.game .TouchTheEdge-mask-left {
  left: 0;
  background: linear-gradient(90deg, #141414, rgba(0, 0, 0, 0.2), transparent);
}
.game .TouchTheEdge-mask-right {
  right: 0;
  background: linear-gradient(270deg, #141414, rgba(0, 0, 0, 0.2), transparent);
}
.landscape-scrolling-lists .list {
  will-change: transform;
  height: 119px;
  opacity: 0;
}
.landscape-scrolling-lists .list.move {
  opacity: 1;
}
.landscape-scrolling-list-0.move {
  transform: translateX(-100%);
  transition: transform 31.6s linear;
}
.landscape-scrolling-list-1.move {
  transform: translateX(-100%);
  transition: transform 35s linear;
}
.landscape-scrolling-list-2.move {
  transform: translateX(-100%);
  transition: transform 32.8s linear;
}
.landscape-scrolling-list-3.move {
  transform: translateX(-100%);
  transition: transform 35s linear;
}
.landscape-scrolling-list-4.move {
  transform: translateX(-100%);
  transition: transform 32s linear;
}
.header_4s8lgi3j .nav-box {
  background: rgba(16, 142, 233, 0.6666666667);
  position: fixed;
  top: 0;
  z-index: 99;
  font-size: 14px;
}
.header_4s8lgi3j .nav-item {
  height: 100%;
  cursor: pointer;
}
.header_4s8lgi3j .nav-item.active,
.header_4s8lgi3j .nav-item:hover {
  color: #fff;
}
.header_4s8lgi3j .nav-item span {
  display: block;
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: 600;
}
.header_4s8lgi3j .nav-item.active span:before,
.header_4s8lgi3j .nav-item:hover span:before {
  width: 100%;
}
.header_4s8lgi3j .nav-item span:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 99px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header_4s8lgi3j .open .bar:first-child {
  transform: rotate(45deg) translate(6px, 6px);
  transition: transform 0.3s ease-in-out;
}
.header_4s8lgi3j .open .bar:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
.header_4s8lgi3j .open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  transition: transform 0.3s ease-in-out;
}
.header_4s8lgi3j .drawer,
.header_4s8lgi3j .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jac-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-color: hsla(0, 0%, 100%, 0.6) !important;
  box-sizing: border-box;
}
.card-container {
  background: #fff;
  border: 1px solid #fff;
}
.Promotional_mysw__QHPUW {
  width: 680px;
  height: 700px;
}
.Promotional_swiperContainer__N6F4z
  .swiper-slide:not(.swiper-slide-active)
  .Promotional_sw_item__fBlgR {
  filter: brightness(0.5) contrast(0.6);
}
.Promotional_swiperContainer__N6F4z
  .swiper-slide-active
  .Promotional_sw_item__fBlgR {
  filter: brightness(1) contrast(1);
}
@media (min-width: 1024px) {
  .Promotional_swiperContainer__N6F4z
    .swiper-slide-prev
    .Promotional_sw_item__fBlgR {
    transform: translateX(100px);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  .Promotional_swiperContainer__N6F4z
    .swiper-slide-next
    .Promotional_sw_item__fBlgR {
    transform: translateX(-100px);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  .Promotional_swiperContainer__N6F4z
    .swiper-slide-active
    .Promotional_sw_item__fBlgR {
    transform: translateX(0);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
}
.Promotional_sw_item__fBlgR {
  box-shadow: 0 0 18px #fff;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.Promotional_barw__6y7O5 {
  animation: Promotional_gomove__71pNy 5s linear infinite;
}
@keyframes Promotional_gomove__71pNy {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.question-container {
  background: url(/_next/static/media/bg.ef0aaaf5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-blend-mode: overlay;
}
