@charset "UTF-8";
:root {
  --header-height: 80px;
}
:root .mobile {
  --header-height: 64px;
}

.side-menu-item, .game-info, .game-card .title, .nav-item {
  transition: all 0.15s ease-in-out;
}

.help-title, .help-ol.main-ol > li, .scrolling-demo-block {
  transition: all 0.2s ease-in-out;
}

.game-card::after, .burger::before, .burger::after, .burger span, .burger-btn, .nav {
  transition: all 0.3s ease-in-out;
}

html {
  font-family: "Poppins", "微软雅黑", sans-serif;
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 576px) {
  html {
    font-size: 12px;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  background: transparent linear-gradient(33deg, #000000 0%, #2E2306 100%) 0% 0% no-repeat padding-box;
  -webkit-overflow-scrolling: touch;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: text;
}

a,
ul,
li {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  list-style: none;
  padding: 0;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus,
ul:focus,
li:focus {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: inherit;
}

button {
  border: none;
  background-color: transparent;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
button:focus {
  outline: none;
}

h1 {
  font-size: 0;
  display: none;
}

strong {
  appearance: none;
  font-weight: normal;
}

img {
  display: block;
}

input,
textarea {
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  resize: none;
}
input:focus,
textarea:focus {
  appearance: none;
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select:focus {
  outline: none;
}

main {
  position: relative;
}

input,
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  min-width: 1px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container, .contact-sec, .game-block, .about-block {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  .container, .contact-sec, .game-block, .about-block {
    padding: 0 10px;
  }
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.eot");
  src: url("../fonts/poppins/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/Poppins-Regular.woff2") format("woff2"), url("../fonts/poppins/Poppins-Regular.ttf") format("truetype"), url("../fonts/poppins/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.eot");
  src: url("../fonts/poppins/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/poppins/Poppins-Bold.woff2") format("woff2"), url("../fonts/poppins/Poppins-Bold.ttf") format("truetype"), url("../fonts/poppins/Poppins-Bold.svg#Poppins-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("../fonts/syne/Syne-Bold.eot");
  src: url("../fonts/syne/Syne-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/syne/Syne-Bold.woff2") format("woff2"), url("../fonts/syne/Syne-Bold.ttf") format("truetype"), url("../fonts/syne/Syne-Bold.svg#Syne-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.rotate-earth {
  animation: rotateEarth 100s linear infinite;
}

@keyframes rotateEarth {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.fade-in {
  animation: fadeIn 1s linear forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-out {
  animation: fadeOut 0.5s linear forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    width: 20px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 70px;
    opacity: 0;
  }
}
header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  z-index: 5;
  width: 100%;
}
header .container, header .contact-sec, header .game-block, header .about-block {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header::after {
  content: "";
  backdrop-filter: blur(50px);
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.17, 0.17, 0.24, 1);
  visibility: hidden;
  z-index: -1;
}
header.scroll::after {
  opacity: 1;
  visibility: visible;
}

.nav-logo a {
  display: block;
}
.nav-logo img {
  height: 100%;
  max-height: 48px;
  display: block;
}
.mobile .nav-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .nav-logo img {
  max-height: 30px;
}

.nav {
  flex: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5%;
}
.mobile .nav {
  padding-top: var(--header-height);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  gap: 24px;
}
.mobile .nav::after {
  content: "";
  backdrop-filter: blur(50px);
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.17, 0.17, 0.24, 1);
  z-index: -1;
}
.mobile .nav.active {
  opacity: 1;
  pointer-events: initial;
  transform: translateX(0);
}

.nav-item {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
@media (hover: hover) {
  .nav-item:hover {
    color: #ffd726;
  }
}
.mobile .nav-item {
  font-size: 1.375rem;
  display: block;
}
.mobile .nav-item a {
  display: block;
  line-height: 30px;
}

.burger-btn {
  padding: 0 12px;
  height: 100%;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
}
.burger-btn.close .burger span {
  opacity: 0;
}
.burger-btn.close .burger::before {
  transform: rotate(45deg);
  transform-origin: 4px;
  width: 26px;
}
.burger-btn.close .burger::after {
  transform: rotate(-45deg);
  transform-origin: 2px;
  width: 26px;
}

.burger {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}
.burger span {
  background-color: #f3f3f3;
  width: 25px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.burger::before, .burger::after {
  content: "";
  display: inline-block;
  background-color: #f3f3f3;
  width: 20px;
  height: 2px;
}
.burger::before {
  position: absolute;
  top: 0;
  right: 0;
}
.burger::after {
  position: absolute;
  right: 0;
  bottom: 0;
}

.lang-Btn {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
}
.lang-Btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.lang-Btn a:hover, .lang-Btn a.active {
  color: #ffd726;
}

/* 下拉式選單 */
.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

.nav-item .dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
}

/* 下拉選單內容 */
.nav-item .dropdown-content {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 220%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  width: auto;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: max-height 0.5s;
  transform: translateX(-50%);
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .nav-item .dropdown-content {
    position: static;
    max-height: 1000px;
    transform: translateX(0);
    margin-top: 10px;
    width: 100vw;
    box-shadow: none;
  }
}

.nav-item .dropdown-content a {
  padding: 12px 30px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  color: #f3f3f3;
  text-align: center;
}
@media (hover: hover) {
  .nav-item .dropdown-content a:hover {
    color: #ffd726;
  }
}
@media screen and (max-width: 1024px) {
  .nav-item .dropdown-content a {
    padding: 8px 30px;
  }
}

/* hover時顯示下拉選單 */
.nav-item.dropdown:hover .dropdown-content {
  max-height: 1000px;
}

.footer {
  padding: 4.375rem 0 3.125rem;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}
.footer .container, .footer .contact-sec, .footer .game-block, .footer .about-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4%;
}
.footer .col {
  width: 25%;
}
.footer .info-box {
  flex: auto;
}
.mobile .footer {
  padding-left: 18px;
  padding-right: 18px;
}
.mobile .footer .container, .mobile .footer .contact-sec, .mobile .footer .game-block, .mobile .footer .about-block {
  flex-direction: column;
}
.mobile .footer .col {
  width: 100%;
  margin-top: 34px;
}

.footer-logo {
  display: block;
  margin-bottom: 24px;
}
.footer-logo img {
  max-width: 100%;
}
.mobile .footer-logo {
  margin-bottom: 18px;
}
.mobile .footer-logo img {
  height: 30px;
}

.footer-title {
  margin-bottom: 2.25rem;
  color: #FFFFFF;
  font-family: "Syne", "微软雅黑";
  font-weight: bold;
}
.mobile .footer-title {
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.footer-text, .copy-right {
  max-width: 334px;
  font-size: 0.75rem;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.mobile .footer-text, .mobile .copy-right {
  max-width: 100%;
}

.socilal-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 2.125rem 0;
  gap: 16px;
}
.socilal-group [class^=icon-] {
  color: rgba(255, 255, 255, 0.5019607843);
  transition: all 0.3s ease;
}
.socilal-group .icon-fb {
  font-size: 1.3125rem;
}
.socilal-group .icon-fb:hover {
  background: -webkit-linear-gradient(-45deg, #73b8eb 0%, #1b60fa 100%);
  background: linear-gradient(135deg, #73b8eb 0%, #1b60fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.socilal-group .icon-yt {
  font-size: 1.125rem;
}
.socilal-group .icon-yt:hover {
  background: -webkit-linear-gradient(-45deg, #ef4545 0%, #d62525 100%);
  background: linear-gradient(135deg, #ef4545 0%, #d62525 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile .socilal-group {
  margin-bottom: initial;
  gap: 24px;
}
.mobile .socilal-group .icon-fb {
  font-size: 1.75rem;
}
.mobile .socilal-group .icon-yt {
  font-size: 1.4375rem;
}

.copy-right {
  transform-origin: left;
}
.mobile .copy-right {
  margin-bottom: initial;
  text-align: center;
  transform-origin: center;
  margin-top: 54px;
}

.go-top-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  width: 158px;
  height: 40px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.go-top-btn:hover i {
  transform: scale(1.3);
}
.go-top-btn i {
  color: #F5BD00;
  font-size: 15px;
  transition: all 0.3s ease;
}
.go-top-btn::after {
  content: "\e905";
  font-family: "icomoon";
  font-size: 40px;
  color: rgba(255, 255, 255, 0.15);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-img-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  gap: 30px;
}
.footer-img-group a {
  display: inline-block;
  padding: 3px;
}
.mobile .footer-img-group {
  margin-top: 24px;
}

.home-page {
  background: #000;
}

.banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.banner .item {
  width: 100%;
  overflow: hidden;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner img {
  display: block;
  max-width: 100%;
  transition: all 2s ease-out;
}
.banner .banner-pagination {
  bottom: 5%;
}
.banner .swiper-slide-active {
  overflow: hidden;
}
.banner .swiper-slide-active img {
  transform: scale(1.1);
}
.mobile .banner .swiper-slide-active img {
  transform: scale(1.05);
}

.banner-pagination {
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-theme-color: transparent;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2%;
  --swiper-pagination-bullet-width: 5px;
  --swiper-pagination-bullet-height: 5px;
  position: absolute;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-pagination .swiper-pagination-bullet {
  border: solid 1px #fff;
}
.banner-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
}
.mobile .banner-pagination {
  --swiper-pagination-bullet-horizontal-gap: 6%;
}

.index-heading {
  font-size: 3.375rem;
  line-height: 4.0625rem;
  text-transform: uppercase;
  color: #fff;
  font-family: "Syne", "微软雅黑";
  font-weight: bold;
  margin-bottom: 1.25rem;
  position: relative;
}
.mobile .index-heading {
  font-size: 3rem;
}

.index-title {
  color: #EACE37;
  font-size: 1.625rem;
  line-height: 2.375rem;
  margin-bottom: 1.375rem;
  position: relative;
  letter-spacing: 0.8px;
}

.index-text, .game-page-accordion-item-details, .help-ol.main-ol > li ol, .help-item-detail {
  color: rgba(255, 255, 255, 0.7490196078);
  line-height: 1.75rem;
  font-size: 0.9375rem;
  margin-bottom: 1.875rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.about-sec {
  padding: 9.0625rem 0 10.3125rem;
  position: relative;
  background: top/cover url(../images/bg/about_bg.webp) no-repeat;
  overflow: hidden;
}
.about-sec > * {
  z-index: 1;
}
.about-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.4);
}
.mobile .about-sec {
  padding-top: 80px;
  padding-bottom: 84px;
  background: top/cover url(../images/bg/mobile_about_bg.webp) no-repeat;
}
.mobile .about-sec::after {
  display: none;
}

.about-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1%;
  margin-top: 5.625rem;
}
.about-block .index-title {
  max-width: 500px;
}
.about-block .content {
  flex: 2;
}
.about-block .img {
  flex: 3;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: right;
}
.about-block .img::after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background-image: radial-gradient(rgba(204, 47, 125, 0.7) 0, transparent 55%);
  position: absolute;
  top: 10%;
  left: 8%;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.about-block .img img {
  max-width: 86%;
}
.mobile .about-block {
  display: block;
  margin-top: 35px;
  padding: 0 30px;
}
.mobile .about-block .img {
  margin-top: 60px;
  justify-content: center;
}
.mobile .about-block .img img {
  max-width: 100%;
}

.detail-sec {
  background: top/cover url(../images/bg/support_bg.webp) no-repeat;
  padding: 0 20px;
}
.mobile .detail-sec {
  background: #000;
}
.mobile .detail-sec.games {
  padding: 0;
}

.scrolling-demo {
  width: 100%;
}
.mobile .scrolling-demo {
  padding: 0 16px 20px;
}

.scrolling-demo-block {
  height: 150vh;
  background: top url(../images/bg/support_bg.webp) repeat;
  position: relative;
}
.scrolling-demo-block:nth-child(1) {
  height: 100vh;
}
.scrolling-demo-block:nth-last-child(1) {
  height: 200vh;
}
.scrolling-demo-block .container, .scrolling-demo-block .contact-sec, .scrolling-demo-block .game-block, .scrolling-demo-block .about-block {
  padding: 11.125rem 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6%;
  top: 0;
  left: 0;
  right: 0;
}
.scrolling-demo-block .help-open-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  width: fit-content;
  padding: 0;
  color: #fff;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.scrolling-demo-block .help-open-btn::before {
  content: "+";
  font-size: 30px;
}
.mobile .scrolling-demo-block {
  border: solid 1px rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.0588235294);
  border-radius: 20px;
  height: initial;
  margin-bottom: 15px;
}
.mobile .scrolling-demo-block .container, .mobile .scrolling-demo-block .contact-sec, .mobile .scrolling-demo-block .game-block, .mobile .scrolling-demo-block .about-block {
  display: none;
  padding: 0 20px 40px;
  flex-direction: column;
  height: initial;
  align-items: stretch;
}
.mobile .scrolling-demo-block.active {
  display: block;
}
.mobile .scrolling-demo-block.active .help-open-btn::before {
  content: "-";
  font-size: 36px;
}

.demo-title {
  font-size: 2.125rem;
  height: 88px;
  font-family: "Syne", "微软雅黑";
  color: #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
}
.mobile .demo-title {
  font-size: 1.5rem;
}

.demo-img {
  flex: 1;
  position: relative;
  text-align: center;
}

.main-img {
  display: inline-block;
  max-width: 85%;
}
.mobile .main-img {
  max-width: 100%;
}

.demo-dec-img {
  position: absolute;
  background-image: linear-gradient(137deg, #F445A3, #EDCC18);
  border-radius: 50%;
  padding: 3px;
  width: 10%;
  aspect-ratio: 1/1;
  animation: zoomInOut 2s linear infinite;
}
.demo-dec-img.id {
  top: 12%;
  left: 20%;
  animation-duration: 2s;
}
.demo-dec-img.vn {
  top: 15%;
  right: 15%;
  animation-duration: 2.5s;
}
.demo-dec-img.en {
  top: 68%;
  right: 13%;
  animation-duration: 3s;
}
.demo-dec-img.th {
  top: 83%;
  right: 45%;
  animation-duration: 3.5s;
}
.demo-dec-img.cn {
  top: 66%;
  left: 10%;
  animation-duration: 4s;
}
.demo-dec-img.kr {
  top: 0%;
  right: 40%;
  animation-duration: 4.5s;
}
.mobile .demo-dec-img {
  width: 15%;
}

.demo-img-heading {
  color: #ffffff;
  text-align: center;
  font-size: 3.125rem;
  line-height: 4.375rem;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6);
  opacity: 0.96;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.mobile .demo-img-heading {
  font-size: 32px;
  line-height: 40px;
}

.demo-content {
  flex: 1;
  height: 60vh;
  position: relative;
}
.mobile .demo-content {
  height: initial;
}

.demo-list {
  margin-top: 54px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.625rem;
}
.demo-list li {
  color: #FFFFFF;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.demo-list [class^=icon-] {
  background: linear-gradient(137deg, #EF53A7 0%, #EDCC18 100%);
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-right: 0.7em;
  color: transparent;
  font-size: 20px;
}
.demo-list .icon-android {
  font-size: 24px;
}
.demo-list .icon-ios {
  font-size: 22px;
}
.mobile .demo-list {
  margin-top: 50px;
}

.demo-scroll-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.progress-page {
  color: #FFFFFF;
  text-align: center;
  font: normal normal bold 1.25rem/1.5rem Syne;
  letter-spacing: 0.1px;
  color: #FFFFFF;
  opacity: 1;
}

.demo-progress {
  position: relative;
  width: 3px;
  height: 60vh;
  background: transparent linear-gradient(180deg, #E29123 0%, #A012A0 100%) 0% 0% no-repeat padding-box;
}
.demo-progress .value-mask {
  width: 100%;
  background: #CBCBCB;
  position: absolute;
  left: 0;
  bottom: 0;
}

.game-block {
  max-width: 1660px;
  padding: 7.75rem 0 5.625rem;
  border-radius: 3.125rem;
  background: top/cover url(../images/bg/game_bg.webp) no-repeat;
  transform: translateY(10rem);
}
.mobile .game-block {
  border-radius: initial;
  width: 100%;
  padding: 60px 0;
  transform: initial;
}

.game-detail {
  margin-top: 60px;
  padding: 0 10%;
  width: 100%;
  position: relative;
}
.game-detail .wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
}
.mobile .game-detail .wrapper {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: initial;
}

.game-card {
  width: 30%;
  max-width: 362px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 2.25rem 20px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.game-card:hover .game-info, .game-card:hover::after {
  opacity: 1;
}
.game-card .title {
  font-family: "Syne", "微软雅黑";
  font-weight: bold;
  letter-spacing: 0.14px;
  color: #FFFFFF;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7098039216);
  opacity: 1;
  line-height: 2.125rem;
  font-size: 1.75rem;
  z-index: 1;
}
.game-card img {
  max-width: 75%;
}
.game-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
.mobile .game-card {
  max-width: initial;
  aspect-ratio: initial;
  width: 100%;
  margin-bottom: initial;
}
.mobile .game-card img {
  margin-top: 10%;
  margin-bottom: 10%;
}
.mobile .game-card::after {
  display: none;
}
.mobile .game-card:hover .title {
  color: #fff;
}

[class^=game-button-] {
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
}
[class^=game-button-]::before {
  content: "\e904";
  font-family: "icomoon";
  font-size: 16px;
  color: #000;
}
[class^=game-button-]:active {
  opacity: 1;
}

.game-button-prev {
  left: 15px;
}
.game-button-prev::before {
  transform: rotate(180deg);
}

.game-button-next {
  right: 15px;
}

.game-info {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5rem;
  text-align: center;
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  margin: auto;
  z-index: 1;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7960784314);
  opacity: 0;
  letter-spacing: 0.8px;
}
.mobile .game-info {
  position: initial;
  opacity: 1;
  width: 100%;
}

.poker-type {
  background: linear-gradient(136deg, #EFB803 0%, #AA5F13 100%);
}
.poker-type:hover .title {
  color: #EFB803;
}

.domino-type {
  background: linear-gradient(136deg, #CE80FF 0%, #7f3fa7 100%);
}
.domino-type:hover .title {
  color: #CE80FF;
}

.other-type {
  background: linear-gradient(136deg, #318BF5 0%, #2042B4 100%);
}
.other-type:hover .title {
  color: #3f99ff;
}

.tournament-type {
  background: linear-gradient(136deg, #30BF56 0%, #0D6234 100%);
}
.tournament-type:hover .title {
  color: #3bee6a;
}

.quickplay-type {
  background: linear-gradient(136deg, #D8507A 0%, #831258 100%);
}
.quickplay-type:hover .title {
  color: #fd6393;
}

footer.home-type {
  background: top/cover url(../images/bg/contact_bg.jpg) no-repeat;
  padding-top: 9.375rem;
}
.mobile footer.home-type {
  background: top/cover url(../images/bg/mobile_contact_bg.webp) no-repeat;
  padding-top: 0;
}

.contact-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 0 11.875rem;
  gap: 5%;
}
.contact-sec .content {
  flex: 1;
}
.contact-sec .content img {
  margin: 60px auto 0;
  max-width: 100%;
}
.mobile .contact-sec {
  flex-direction: column;
  gap: 35px;
  padding: 80px 24px 88px;
}
.mobile .contact-sec .content {
  text-align: center;
}

.contact-form {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 3.125rem 2.6875rem;
  width: 100%;
}
.contact-form > * {
  z-index: 1;
}
.contact-form::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  backdrop-filter: blur(4px);
  background: #FFFFFF;
  opacity: 0.2;
  z-index: 0;
}
.mobile .contact-form {
  padding: 3.125rem 1.875rem;
}

.btn-group {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.125rem;
}
.mobile .btn-group {
  margin-top: 20px;
}

.btn-submit {
  border: none;
  font-size: 0.875rem;
  font-family: "Syne", "微软雅黑";
  font-weight: bold;
  width: 218px;
  height: 46px;
  border-radius: 1.875rem;
  text-transform: uppercase;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.5s ease;
}
.btn-submit, .btn-submit:link, .btn-submit:visited {
  background-image: linear-gradient(to right, #CC2F7D, #D9930F);
  color: white;
}
.btn-submit:hover {
  transform: translateY(-2px);
  transform: scale(1.05);
}
.btn-submit:active, .btn-submit:focus {
  outline: none;
  transform: translateY(1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
}
.btn-submit::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to left, #CC2F7D, #D9930F);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 1000px;
  opacity: 0;
  transition: all 0.5s ease;
}
.btn-submit:hover::before {
  opacity: 1;
}
.mobile .btn-submit {
  width: 100%;
}

.form {
  width: 100%;
}
.form.big {
  grid-column: 2 span;
}
.mobile .form {
  grid-column: 2 span;
}

.label {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.3125rem;
  margin-bottom: 10px;
  display: block;
}

.textarea, .input {
  width: 100%;
  background: #E3E3E3 0% 0% no-repeat padding-box;
  border: 1px solid #B2B2B2;
  border-radius: 5px;
  font-size: 0.875rem;
  color: #000000;
  padding: 0 1.125rem;
  font-family: "Poppins";
  display: block;
}
.textarea::placeholder, .input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.input {
  height: 3.25rem;
}

.textarea {
  padding: 1.125rem;
}

.arrow-down {
  position: absolute;
  top: 84%;
  left: calc(50% - 12.5px);
  margin: 0 auto;
  color: #fff;
  font-size: 1.5625rem;
  font-style: normal;
  opacity: 0.78;
  animation: slide-top 2s ease-out infinite alternate both;
}
.arrow-down::before, .arrow-down::after {
  content: "\e902";
  font-family: "icomoon";
  font-size: inherit;
  color: inherit;
}
.arrow-down::after {
  position: absolute;
  top: 0.6rem;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .arrow-down {
    top: auto;
    bottom: 3%;
  }
}

.loading-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading {
  display: inline-block;
  animation: loading 1000ms infinite ease;
  z-index: 1;
}

.help-page {
  padding-top: calc(var(--header-height) + 4.375rem);
  padding-bottom: 6.25rem;
}
.help-page .container, .help-page .about-block, .help-page .game-block, .help-page .contact-sec {
  position: relative;
  padding-left: 300px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .help-page .container, .help-page .about-block, .help-page .game-block, .help-page .contact-sec {
    padding-left: 20px;
  }
}
.help-page .help-open-btn {
  width: 100%;
  height: 5.3125rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.875rem;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 1.25rem;
  color: inherit;
}
.help-page .help-open-btn::before {
  content: "+";
}
.mobile .help-page {
  padding-top: 164px;
}
@media screen and (max-width: 1280px) {
  .mobile .help-page .container, .mobile .help-page .about-block, .mobile .help-page .game-block, .mobile .help-page .contact-sec {
    padding-left: 10px;
  }
}

.help-heading {
  text-align: left;
  font: normal normal bold 2.25rem/2.6875rem Syne;
  margin-bottom: 1.25rem;
  color: #FCD32D;
  opacity: 1;
}

.side-menu {
  width: 280px;
  min-width: 280px;
  padding-top: 26px;
  position: fixed;
  top: calc(var(--header-height) + 4.375rem);
  left: calc((100% - 1280px) / 2);
}
@media screen and (max-width: 1280px) {
  .side-menu {
    position: static;
  }
}
.mobile .side-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 1;
  padding: initial;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: auto;
  background: #151003;
  height: 56px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.side-menu-item {
  text-align: left;
  font-size: 1rem;
  font-weight: 1.5625rem;
  color: rgba(255, 255, 255, 0.7019607843);
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 26px;
}
.side-menu-item.active a {
  color: #FCD32D;
}
.side-menu-item a:hover {
  color: #FCD32D;
}
.side-menu-item.active::before {
  content: "\e902";
  font-family: "icomoon";
  font-size: inherit;
  color: inherit;
  margin-right: 0.5em;
  color: #FCD32D;
}
.mobile .side-menu-item {
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: initial;
  padding: 0 16px;
}
.mobile .side-menu-item::before {
  display: none;
}

.help-block {
  flex: auto;
  min-height: 50vh;
}
.help-block .index-text, .help-block .game-page-accordion-item-details, .help-block .help-ol.main-ol > li ol, .help-ol.main-ol > li .help-block ol, .help-block .help-item-detail {
  font-size: 0.9375rem;
}
.mobile .help-block {
  padding: 0 10px;
}

.help-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.mobile .help-list {
  display: block;
}

.help-item, .help-ol.main-ol > li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.062745098);
  border-radius: 0.625rem;
  padding: 1.75rem 1.25rem;
  position: relative;
  margin-bottom: 1rem;
  color: #fff;
}
.help-item:hover, .help-ol.main-ol > li:hover {
  color: #FFE165;
}
.help-item.active, .help-ol.main-ol > li.active {
  background: rgba(0, 0, 0, 0.2509803922);
}
.help-item.active .help-item-detail, .help-ol.main-ol > li.active .help-item-detail {
  display: block;
}
.help-item.active .help-open-btn::before, .help-ol.main-ol > li.active .help-open-btn::before {
  content: "-";
}

.highlight {
  color: #e8ac3f;
}

.help-item-detail {
  display: none;
  padding-top: 1rem;
}
.help-item-detail p {
  margin-bottom: 1rem;
}
.help-item-detail a {
  color: #2f8bd1;
}
.help-item-detail a:hover {
  text-decoration: underline;
}
.help-item-detail ul {
  padding-left: 1em;
}
.help-item-detail ul li {
  list-style: initial;
  margin: 1rem 0;
}

.help-col {
  flex: 1;
  width: 100%;
}

.help-title, .help-ol.main-ol > li {
  font-size: 1.125rem;
  font-weight: normal;
}

.help-ol {
  counter-reset: item;
}
.help-ol li {
  display: block;
  margin-bottom: 16px;
  padding-left: 2.5em;
  position: relative;
}
.help-ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  text-align: center;
}
.help-ol.main-ol {
  flex: 1;
}
.help-ol.main-ol:nth-child(2) {
  counter-reset: item14;
}
.help-ol.main-ol > li {
  padding: 1.75rem 3.125rem;
}
.help-ol.main-ol > li:before {
  top: 1.75rem;
  left: 0.9375rem;
}
.help-ol.main-ol > li.active {
  display: block;
  background: rgba(0, 0, 0, 0.2509803922);
}
.help-ol.main-ol > li.active ol {
  display: block;
}
.help-ol.main-ol > li ol {
  padding-top: 1rem;
  display: none;
}

.game-page {
  padding-top: calc(var(--header-height) + 4.375rem);
  padding-bottom: 6.25rem;
  max-width: 1300px;
  width: 80%;
  margin: auto;
}
.game-page.poker {
  max-width: 1100px;
  width: 70%;
}
.game-page p {
  margin-bottom: 1rem;
}
.game-page a {
  color: #EACE37;
}
.game-page a:hover {
  text-decoration: underline;
}
.game-page strong {
  color: #d12f2f;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .game-page {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .game-page {
    padding-top: calc(var(--header-height) + 1.875rem);
  }
  .game-page.poker {
    padding-top: calc(var(--header-height) + 1.875rem + 56px);
    width: 90%;
  }
}

.game-sec + .game-sec {
  margin-top: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .game-sec + .game-sec {
    margin-top: 4.375rem;
  }
}

.game-info-article + .game-info-article {
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .game-info-article + .game-info-article {
    margin-top: 1.875rem;
  }
}

.game-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  font-family: "Syne", "微软雅黑";
  font-weight: bold;
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .game-title {
    font-size: 2rem;
    margin-bottom: 0.625rem;
  }
}

.game-heading {
  color: #EACE37;
  font-family: "Poppins";
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
.zh-CN .game-heading {
  font-family: "微软雅黑";
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .game-heading {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
  }
}

.poker-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.poker-block .game-page-accordion {
  width: 30%;
}
.poker-block .photo {
  width: 60%;
  aspect-ratio: 532/481;
}
@media screen and (max-width: 1200px) {
  .poker-block .game-page-accordion {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .poker-block {
    flex-direction: column;
  }
  .poker-block .game-page-accordion {
    width: 100%;
  }
  .poker-block .photo {
    width: 100%;
  }
}

.game-page-accordion-item {
  padding: 1.75rem 1.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.5294117647);
  font-size: 1.125rem;
  font-family: "Poppins";
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover: hover) {
  .game-page-accordion-item:hover {
    color: #fff;
  }
}
.game-page-accordion-item span {
  display: block;
}
.game-page-accordion-item.active {
  color: #fff;
}
.game-page-accordion-item.active::after {
  content: "";
  width: 50%;
  height: 1px;
  background: #EACE37;
  position: absolute;
  left: 0;
  bottom: 0;
}
.game-page-accordion-item.active .poker-item-details {
  display: block;
}

.accordion-img {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}
.accordion-img.active {
  opacity: 1;
  height: 100%;
  max-height: 1000px;
}

.game-page-accordion-item + .game-page-accordion-item {
  border-top: 1px solid #4a4a4a;
}

.game-page-accordion-item-details {
  display: none;
  padding-top: 1rem;
  margin-bottom: 0;
}

.game-list-block {
  padding-left: 40px;
}
.game-list-block li {
  list-style: disc;
  margin-bottom: 0;
}

.rankings-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .rankings-content {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 1.25rem;
  }
}

.rankings-block {
  overflow: hidden;
  padding: 1.75rem 0;
  position: relative;
}
.rankings-block .index-text, .rankings-block .help-item-detail, .rankings-block .help-ol.main-ol > li ol, .help-ol.main-ol > li .rankings-block ol, .rankings-block .game-page-accordion-item-details {
  margin-bottom: 0;
}
.rankings-block .text-content {
  padding: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .rankings-block {
    padding: 1rem 0;
  }
  .rankings-block .text-content {
    padding: 0.625rem;
  }
}

.poker-hand-title {
  font-size: 1.5rem;
  color: #fff;
  font-family: "Syne", "微软雅黑";
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .poker-hand-title {
    margin-bottom: 0.625rem;
    font-size: 1.25rem;
  }
}

.pokerHand {
  padding-right: 1.125rem;
  padding-bottom: 7.5rem;
  padding-left: 0.3125rem;
}
@media screen and (max-width: 1024px) {
  .pokerHand {
    padding: 0 0 6.25rem 0.3125rem;
  }
}

.rankings-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rankings-images img {
  width: 100%;
  aspect-ratio: 600/250;
  display: block;
  opacity: 0.3;
  height: 0;
  transition: opacity 0.3s ease-in-out;
  max-width: 585px;
}
.rankings-images img.active {
  opacity: 1;
  height: auto;
}
.rankings-images.domino img {
  width: 100%;
  aspect-ratio: 800/250;
  object-fit: contain;
}
.rankings-images.card13 .image-wrapper {
  opacity: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
}
.rankings-images.card13 .image-wrapper img {
  object-fit: contain;
  opacity: 0.3;
  height: 0;
  aspect-ratio: 800/250;
}
.rankings-images.card13 .image-wrapper.active {
  opacity: 1;
}
.rankings-images.card13 .image-wrapper.active img {
  object-fit: contain;
  opacity: 1;
  height: auto;
}

.pokerHand-btn {
  color: rgba(255, 255, 255, 0.7411764706);
  border: 1px solid rgba(255, 255, 255, 0.7411764706);
  padding: 20px 14px;
  margin-top: 0;
  width: auto;
  aspect-ratio: 1/1.2;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 1;
}
@media (hover: hover) {
  .pokerHand-btn:hover {
    color: #EACE37;
    border: 1px solid #EACE37;
  }
}
.pokerHand-btn::after {
  font-size: 30px;
  content: "\e902";
  font-family: "icomoon";
  font-size: inherit;
  color: inherit;
}
.pokerHand-btn.swiper-button-prev {
  position: absolute;
  top: unset;
  left: 0%;
  bottom: 18%;
  transform: scaleX(-1);
}
.pokerHand-btn.swiper-button-next {
  position: absolute;
  top: unset;
  left: 60px;
  bottom: 26%;
}
@media screen and (max-width: 1024px) {
  .pokerHand-btn.swiper-button-prev {
    position: absolute;
    top: unset;
    left: 0%;
    bottom: 15%;
    transform: scaleX(-1);
  }
  .pokerHand-btn.swiper-button-next {
    position: absolute;
    top: unset;
    left: 60px;
    bottom: 15%;
  }
}

.pokerHand-swiper-pagination {
  width: 45% !important;
  bottom: 0 !important;
  z-index: 0;
}
.pokerHand-swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .pokerHand-swiper-pagination {
    width: 100% !important;
  }
}

.poker-side-menu {
  position: fixed;
  top: calc(var(--header-height) + 1.25rem);
  right: max(1vw, (100% - 1500px) / 2);
  background-color: rgba(100, 100, 100, 0.1294117647);
  backdrop-filter: blur(5px);
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 99;
  min-width: 160px;
}
.poker-side-menu li {
  padding: 0.625rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.poker-side-menu li.active a {
  color: #EACE37;
}
.poker-side-menu li.active::before {
  content: "\e902";
  font-family: "icomoon";
  font-size: inherit;
  color: inherit;
  color: #FCD32D;
  margin-right: 0.5em;
}
@media (hover: hover) {
  .poker-side-menu li:hover {
    cursor: pointer;
  }
  .poker-side-menu li:hover a {
    color: #EACE37;
  }
}
.poker-side-menu a {
  color: rgba(255, 255, 255, 0.862745098);
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
.mobile .poker-side-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 3;
  padding: initial;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: auto;
  background: #151003;
  height: 56px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.mobile .poker-side-menu li {
  flex-grow: 1;
}

.poker-img-1 {
  background: url(../images/poker/A-1.webp) no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.poker-img-2 {
  background: url(../images/poker/A-2.webp);
  background-position: center center;
  background-size: 100% 100%;
}

.poker-img-3 {
  background: url(../images/poker/A-3.webp);
  background-position: center center;
  background-size: 100% 100%;
}

.poker-img-4 {
  background: url(../images/poker/A-4.webp);
  background-position: center center;
  background-size: 100% 100%;
}

.game-result {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2.25rem auto;
}
.game-result.v2 .photo {
  width: 100%;
  aspect-ratio: 225/143;
  max-width: 250px;
}
.game-result.v2 .photo img {
  width: 100%;
}

.game-result-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.game-result-item .photo {
  width: 100%;
  aspect-ratio: 213/250;
  max-width: 160px;
  margin-bottom: 1rem;
}
.game-result-item .photo img {
  width: 100%;
}
.game-result-item p {
  color: rgba(255, 255, 255, 0.7490196078);
  line-height: 1.75rem;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.game-img-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  gap: 5px;
}
.game-img-wrap div {
  width: 50%;
}
.game-img-wrap.type2 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: inherit;
  row-gap: 24px;
}
.game-img-wrap.type2 div {
  width: 100%;
}
.game-img-wrap.type2 .game-image {
  max-width: 200px;
}
.game-img-wrap.type3 div {
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .game-img-wrap {
    flex-direction: column;
    margin-top: 16px;
  }
  .game-img-wrap div {
    width: 100%;
  }
  .game-img-wrap.type2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: inherit;
    row-gap: 10px;
  }
  .game-img-wrap.type2 .game-image {
    max-width: 200px;
  }
  .game-img-wrap.type3 {
    flex-direction: row;
  }
  .game-img-wrap.type3 div {
    width: fit-content;
  }
}

.game-image {
  display: block;
  max-width: 950px;
}
.game-image img {
  width: 100%;
}
.game-image.rummy {
  margin-bottom: 15px;
}

.rummy-group {
  opacity: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  overflow: hidden;
}
.rummy-group .line {
  color: #fff;
  white-space: nowrap;
  font-size: 10px;
  height: 0;
  align-self: center;
}
.rummy-group img {
  opacity: 0.3;
  height: 0;
  aspect-ratio: 34/25;
}
.rummy-group img.high {
  aspect-ratio: 170/141;
}
.rummy-group.active {
  opacity: 1;
}
.rummy-group.active .line {
  height: auto;
}
.rummy-group.active img {
  opacity: 1;
  height: auto;
}