@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import 'reset.css';
.cookie-confirm {
  background-color: #D8D8D8;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.cookie-confirm .cc-btn-close {
  position: absolute;
  top: 5px;
  right: 20px;
}
.cookie-confirm .cc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
}
.cookie-confirm .cc-wrap .cc-txt {
  color: #454545;
}
.cookie-confirm .cc-wrap .cc-txt .cc-link {
  font-size: inherit;
  color: #004DA1;
  text-decoration: underline;
  display: block;
}
.cookie-confirm .cc-wrap .cc-btn {
  width: 80px;
  text-align: center;
  height: 40px;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  margin-right: 30px;
  background-color: #F9BE00;
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .cookie-confirm .cc-wrap .cc-txt {
    line-height: 26px;
  }
  .cookie-confirm .cc-wrap .cc-btn:hover {
    background-color: #F99100;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
}
@media screen and (max-width: 768px) {
  .cookie-confirm .cc-wrap .cc-txt {
    font-size: 14px;
    line-height: 22px;
  }
}
body, body * {
  font-family: "Noto Sans TC", "microsoft jhenghei", Verdana, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}
body * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body header {
  background: -webkit-gradient(linear, right top, left top, from(rgb(83, 55, 50)), to(rgb(54, 36, 33)));
  background: linear-gradient(to left, rgb(83, 55, 50) 0%, rgb(54, 36, 33) 100%);
  padding: 17px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body header .game__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
body header .game__name img {
  height: 100%;
  vertical-align: top;
  border-radius: 8px;
}
body header .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
body header .main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
body header .main-nav a:hover, body header .main-nav a.active {
  color: #ffe696;
}
body header .user-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body header .user-panel--logged-in, body header .user-panel--logged-out {
  text-align: center;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #fff;
  background-color: #F9BE00;
  border-radius: 8px;
  text-decoration: none;
  padding: 0 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body header .user-panel--logged-in:hover, body header .user-panel--logged-out:hover {
  background-color: #F99100;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body header .user-panel--logged-in a, body header .user-panel--logged-out a {
  text-decoration: none;
  color: #fff;
}
body header .user-panel .user-panel__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
}
body header .menu-toggle {
  display: none;
}
@media screen and (max-width: 900px) {
  body header {
    padding: 10px 24px;
  }
  body header .main-nav,
  body header .user-panel {
    display: none;
  }
  body header .menu-toggle {
    display: block;
  }
  body header .menu-toggle .close {
    display: none;
  }
  body header .menu-toggle.active .close {
    display: block;
  }
  body header .menu-toggle.active .default {
    display: none;
  }
}
body aside {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(340px);
          transform: translateX(340px);
  -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s 0.1s, transform 0.3s;
  transition: opacity 0.3s 0.1s, transform 0.3s, -webkit-transform 0.3s;
}
body aside.active {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  z-index: 999;
}
body aside .aside-block {
  width: 100%;
  max-width: 340px;
  padding-top: 15px;
  background-color: #fff;
  height: calc(100% - 84px);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
body aside .aside-block .user-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body aside .aside-block .user-panel--logged-in {
  text-align: center;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: #fff;
  background-color: #F9BE00;
  border-radius: 8px;
  text-decoration: none;
  padding: 0 20px;
}
body aside .aside-block .user-panel--logged-in a {
  text-decoration: none;
  color: #fff;
}
body aside .aside-block .user-panel--logged-out {
  color: #1e1e1e;
  font-size: 18px;
  text-decoration: none;
  position: absolute;
  width: 40px;
  bottom: 100px;
  right: 0;
  left: 0;
  margin: auto;
}
body aside .aside-block .user-panel__name {
  color: #1e1e1e;
  padding: 25px 20px;
  background-color: #F4F4F4;
}
body aside .aside-block .main-nav a {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-size: 18px;
  gap: 20px;
  text-decoration: none;
  color: #1e1e1e;
}
@media screen and (max-width: 1000px) {
  body aside {
    top: 60px;
    height: calc(100% - 60px);
  }
}
body footer {
  background-color: #362422;
  border-top: 3px solid #814D35;
  -webkit-box-shadow: 0 -2px 0 0 #5B2B03;
          box-shadow: 0 -2px 0 0 #5B2B03;
  position: relative;
  z-index: 5;
}
body footer .wrap {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body footer .wrap .footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
body footer .wrap .footer__logos a {
  display: inline-block;
  height: 100%;
}
body footer .wrap .footer__logos a img {
  vertical-align: top;
  height: 100%;
}
body footer .wrap .footer__company-info {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}
body footer .wrap .footer__company-info .footer__company span {
  display: block;
}
body footer .wrap .footer__warnings li {
  padding-left: 12px;
  position: relative;
  color: #fff;
  line-height: 1.6;
  font-size: 12px;
}
body footer .wrap .footer__warnings li:after {
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
body footer .wrap .footer__rating {
  width: 45px;
}
body footer .wrap .footer__rating img {
  vertical-align: top;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  body footer .wrap {
    width: 97%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 10px;
  }
  body footer .wrap .footer__rating {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
  }
  body footer .wrap .footer__logos {
    width: 100%;
    height: 40px;
  }
  body footer .wrap .footer__warnings {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body footer .wrap .footer__company-info {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  body footer .wrap .footer__company-info .footer__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
body .float-button__top {
  position: fixed;
  right: 20px;
  bottom: 150px;
  width: 45px;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
}
body .float-button__top:hover {
  opacity: 1 !important;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body .float-button__top img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .float-button__top {
    bottom: 20px;
  }
}

@-webkit-keyframes arrowAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes arrowAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes cloudAni1 {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
}
@keyframes cloudAni1 {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
}
@-webkit-keyframes cloudAni2 {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes cloudAni2 {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
article {
  background-color: #CFE8F6;
}
article section.top {
  background: url(../Images/md-bg.jpg) no-repeat center bottom;
  height: 915px;
  position: relative;
}
article section.top #bubble-canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 90%;
  z-index: 3;
}
article section.top .top__pd-bg,
article section.top .top__mb-bg {
  display: none;
}
article section.top .top__role {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 30px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 5;
}
article section.top .top__role img {
  max-width: 100%;
}
article section.top .top__cloud-1 {
  position: absolute;
  z-index: 2;
  -webkit-animation: cloudAni1 40s linear infinite alternate;
          animation: cloudAni1 40s linear infinite alternate;
  top: 300px;
}
article section.top .top__cloud-2 {
  position: absolute;
  z-index: 2;
  -webkit-animation: cloudAni2 40s linear infinite alternate;
          animation: cloudAni2 40s linear infinite alternate;
  right: 0;
  top: 300px;
}
article section.top .top__grassland {
  position: absolute;
  background: url(../Images/md-grassland.png) no-repeat center center/auto 100%;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 295px;
  z-index: 4;
}
article section.top .top__logo {
  width: 208px;
  position: absolute;
  left: 30px;
  top: 45px;
}
article section.top .top__logo img {
  width: 100%;
}
article section.top .top__start-button {
  width: 277px;
  position: absolute;
  top: 650px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 7;
}
article section.top .top__start-button:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article section.top .top__start-button img {
  width: 100%;
}
article section.top .top__arrow {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 800px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 7;
  -webkit-animation: arrowAni 0.3s ease-in infinite alternate;
          animation: arrowAni 0.3s ease-in infinite alternate;
}
article section.top .top__arrow img {
  width: 100%;
}
article section.banner {
  background: url(../Images/bg-banner.jpg) no-repeat center center;
  height: 645px;
  position: relative;
  z-index: 0;
}
article section.banner .banner__top-bg,
article section.banner .banner__bottom-bg {
  display: none;
}
article section.banner .banner__wrap {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  padding: 200px 0 30px;
  position: relative;
}
article section.banner .banner__wrap .mySwiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
article section.banner .banner__wrap .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
article section.banner .banner__wrap .swiper-slide img {
  width: 100%;
}
article section.banner .banner__wrap .swiper-button-prev, article section.banner .banner__wrap .swiper-button-next {
  width: 25px;
}
article section.banner .banner__wrap .swiper-button-next {
  right: 0;
}
article section.banner .banner__wrap .swiper-button-prev {
  left: 0;
}
article section.banner .banner__wrap .swiper-button-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
article section.banner .banner__wrap .swiper-button-prev:after, article section.banner .banner__wrap .swiper-button-next:after {
  all: unset;
}
article section.banner .banner__wrap .banner__arrow {
  width: 30px;
  height: 100%;
  background-color: rgba(117, 80, 66, 0.8);
  position: absolute;
  top: 0;
  z-index: 5;
}
article section.banner .banner__wrap .banner__arrow img {
  width: 100%;
}
article section.banner .banner__wrap .banner__arrow--prev {
  left: 0;
}
article section.banner .banner__wrap .banner__arrow--next {
  right: 0;
}
article section.banner .banner__wrap .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 10px;
  padding: 10px 0;
}
article section.banner .banner__wrap .swiper-pagination-bullet {
  border-radius: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
  opacity: 1;
  width: 13px;
  height: 13px;
}
article section.banner .banner__wrap .swiper-pagination-bullet-active {
  background: #FFF600;
}
article section.content-group {
  background: url(../Images/img-left-2.png) no-repeat right bottom, url(../Images/img-right-1.png) no-repeat left bottom, url(../Images/bg-other.jpg) no-repeat top center;
  padding-bottom: 200px;
  position: relative;
}
article section.content-group .content-group__bg {
  display: none;
}
article section.content-group .news {
  padding: 70px 0;
  position: relative;
  z-index: 5;
}
article section.content-group .news .news__wrap {
  width: 97%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}
article section.content-group .news .news__wrap .news__header {
  margin: auto;
  margin-bottom: 25px;
  width: 170px;
}
article section.content-group .news .news__wrap .news__header img {
  width: 100%;
  vertical-align: top;
}
article section.content-group .news .news__wrap .news__more {
  display: block;
  text-align: right;
  margin-bottom: 10px;
}
article section.content-group .news .news__wrap .news__more a {
  display: inline-block;
  width: 64px;
}
article section.content-group .news .news__wrap .news__more a img {
  vertical-align: top;
  width: 100%;
}
article section.content-group .news .news__wrap .news__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 10px) / 3) 5px calc((100% - 10px) / 3) 5px calc((100% - 10px) / 3);
  grid-template-columns: repeat(3, calc((100% - 10px) / 3));
  gap: 10px 5px;
}
article section.content-group .news .news__wrap .news__items .news__block {
  border: 5px solid #fff;
  border-radius: 10px;
  background-color: #fff;
}
article section.content-group .news .news__wrap .news__items .news__block .news__image {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
article section.content-group .news .news__wrap .news__items .news__block .news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article section.content-group .news .news__wrap .news__items .news__block dl {
  line-height: 1.8;
  padding: 10px 12px 12px 12px;
}
article section.content-group .news .news__wrap .news__items .news__block dl .news__title {
  font-size: 18px;
  font-weight: bold;
  color: #1e1e1e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
article section.content-group .news .news__wrap .news__items .news__block dl .news__description {
  font-size: 14px;
  color: #1e1e1e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
article section.content-group .news .news__wrap .news__items .news__block dl .news__date {
  color: #00819d;
  font-size: 14px;
}
article section.content-group .products {
  position: relative;
  padding-bottom: 50px;
  z-index: 3;
}
article section.content-group .products .products__wrap {
  width: 97%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  overflow: unset;
}
article section.content-group .products .products__wrap .products__header {
  position: relative;
}
article section.content-group .products .products__wrap .products__header .products__header-img {
  margin: auto;
  padding-bottom: 25px;
  width: 170px;
  position: relative;
  z-index: 5;
}
article section.content-group .products .products__wrap .products__header .products__header-img img {
  width: 100%;
  vertical-align: top;
}
article section.content-group .products .products__wrap .products__header .products__header-bg {
  display: none;
}
article section.content-group .products .products__wrap .products__block {
  border: 7px solid #814D35;
  background: #362421;
  padding: 40px 50px;
  border-radius: 20px;
  position: relative;
}
article section.content-group .products .products__wrap .products__list {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.8);
          box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 20px 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3);
  grid-template-columns: repeat(3, calc((100% - 20px) / 3));
  gap: 15px 10px;
}
article section.content-group .products .products__wrap .products__list .box {
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 10px auto;
  grid-template-columns: 100px auto;
  -ms-grid-rows: 95px 0 35px;
  grid-template-rows: 95px 35px;
  gap: 0 10px;
  background-color: #fff;
  text-decoration: none;
  color: #1e1e1e;
}
article section.content-group .products .products__wrap .products__list .box > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
article section.content-group .products .products__wrap .products__list .box > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
article section.content-group .products .products__wrap .products__list .box > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
article section.content-group .products .products__wrap .products__list .box > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
article section.content-group .products .products__wrap .products__list .box .tag-img {
  position: absolute;
  left: 0;
  top: 20px;
  width: 60px;
}
article section.content-group .products .products__wrap .products__list .box .tag-img img {
  width: 100%;
  vertical-align: top;
}
article section.content-group .products .products__wrap .products__list .box .img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
article section.content-group .products .products__wrap .products__list .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
article section.content-group .products .products__wrap .products__list .box .img span {
  position: absolute;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  right: 10px;
  top: 10px;
  line-height: 18px;
  width: 18px;
  text-align: center;
}
article section.content-group .products .products__wrap .products__list .box .p-name {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  line-height: 1.6;
  border-bottom: 1px solid #dcdcdc;
  font-size: 17px;
}
article section.content-group .products .products__wrap .products__list .box.ad .p-name {
  font-weight: 500;
}
article section.content-group .products .products__wrap .products__list .box .p-amount {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
  -ms-grid-row-align: center;
      align-self: center;
}
article section.content-group .products .products__wrap .products__list .box .p-amount span {
  color: #f55431;
}
article section.content-group .products .products__wrap .products__list .box del {
  color: #666;
  margin-left: 5px;
}
article section.content-group .products .products__wrap .products__list .box .p-ad {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
  text-align: right;
  -ms-grid-row-align: center;
      align-self: center;
  color: #808080;
  font-size: 14px;
}
article section.content-group .products .products__wrap .products__ani {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
article section.content-group .products .products__wrap .products__ani .products__img {
  position: absolute;
}
article section.content-group .products .products__wrap .products__ani .products__img--obj1 {
  right: -740px;
  bottom: -90px;
}
article section.content-group .products .products__wrap .products__ani .products__img--obj2 {
  left: -200px;
  bottom: -100px;
}
article section.content-group .other {
  width: 97%;
  max-width: 570px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 50px;
  overflow: unset;
  border: 5px solid #814D35;
  background-color: #362421;
  border-radius: 50px;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px 20px 170px 20px auto;
  grid-template-columns: 150px 170px auto;
  gap: 20px;
  height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
article section.content-group .other .other__img img {
  position: absolute;
  bottom: 10px;
  left: 30px;
}
article section.content-group .other dl {
  font-size: 18px;
  color: #ffe59f;
  line-height: 1.6;
}
article section.content-group .other .other__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
article section.content-group .other .other__socials .other__social-item {
  width: 43px;
  height: 43px;
}
article section.content-group .other .other__socials .other__social-item--gamer {
  background: url(../Images/ico-gamer.png) no-repeat center center/100%;
}
article section.content-group .other .other__socials .other__social-item--gamer:hover {
  background: url(../Images/ico-gamerR.png) no-repeat center center/100%;
}
article section.content-group .other .other__socials .other__social-item--fb {
  background: url(../Images/ico-fb.png) no-repeat center center/100%;
}
article section.content-group .other .other__socials .other__social-item--fb:hover {
  background: url(../Images/ico-fbR.png) no-repeat center center/100%;
}
article section.content-group .other .other__socials .other__social-item--yt {
  background: url(../Images/ico-youtube.png) no-repeat center center/100%;
}
article section.content-group .other .other__socials .other__social-item--yt:hover {
  background: url(../Images/ico-youtubeR.png) no-repeat center center/100%;
}
article section.content-group .floating {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
article section.content-group .floating .floating__rellax {
  position: absolute;
}
article section.content-group .floating .floating__rellax--obj1 {
  top: -300px;
  right: 0;
}
article section.content-group .floating .floating__rellax--obj2 {
  top: 200px;
  left: -60px;
}
article section.content-group .floating .floating__rellax--obj3 {
  top: 50px;
  right: -340px;
}
@media screen and (max-width: 1250px) {
  article section.top {
    height: 850px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  article section.banner .banner__wrap .mySwiper {
    border-radius: 0;
  }
}
@media screen and (max-width: 1150px) {
  article section.top {
    height: 800px;
  }
  article section.top .top__start-button {
    top: 72%;
    width: 200px;
  }
  article section.top .top__arrow {
    top: 85%;
  }
  article section.content-group .products .products__wrap .products__list {
    -ms-grid-columns: (calc((100% - 10px) / 2))[2];
    grid-template-columns: repeat(2, calc((100% - 10px) / 2));
  }
}
@media screen and (max-width: 1050px) {
  article section.top {
    height: 750px;
  }
}
@media screen and (max-width: 1024px) {
  article section.top {
    height: unset;
    background: unset;
  }
  article section.top .top__pd-bg {
    display: block;
    width: 100%;
  }
  article section.top .top__pd-bg img {
    width: 100%;
    vertical-align: top;
  }
  article section.top .top__role,
  article section.top #bubble-canvas,
  article section.top .top__cloud-1,
  article section.top .top__cloud-2,
  article section.top .top__grassland {
    display: none;
  }
  article section.top .top__logo {
    width: 18%;
    left: 0;
    top: 0;
  }
  article section.banner {
    background: unset;
    height: unset;
  }
  article section.banner .banner__top-bg--pd,
  article section.banner .banner__bottom-bg {
    display: block;
    width: 100%;
  }
  article section.banner .banner__top-bg--pd img,
  article section.banner .banner__bottom-bg img {
    width: 100%;
    vertical-align: top;
  }
  article section.banner .banner__wrap {
    padding: 0;
    background-color: #170E09;
  }
  article section.banner .banner__wrap .banner__arrow {
    display: none;
  }
  article section.content-group .news {
    padding: 50px 0;
  }
  article section.content-group .news .news__wrap .news__more {
    margin-right: 10px;
  }
  article section.content-group .products {
    padding: 30px 0;
  }
}
@media screen and (max-width: 950px) {
  article section.banner {
    background: unset;
    height: auto;
  }
  article section.banner .banner__mb-bg {
    display: block;
    width: 100%;
  }
  article section.banner .banner__mb-bg img {
    width: 100%;
    vertical-align: top;
  }
  article section.banner .banner__wrap {
    width: 100%;
    padding: unset;
    top: 0;
    bottom: 0;
    margin: auto;
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  article section.banner .banner__wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  article section.banner .banner__wrap .banner__arrow {
    display: none;
  }
  article section.content-group .news .news__wrap .news__items {
    -ms-grid-columns: (calc((100% - 5px) / 2))[2];
    grid-template-columns: repeat(2, calc((100% - 5px) / 2));
  }
  article section.content-group .floating {
    display: none;
  }
  article section.content-group .products .products__wrap .products__block {
    padding: 30px;
  }
  article section.content-group .products .products__wrap .products__block .products__list {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  article section.top .top__pd-bg,
  article section.top .top__start-button,
  article section.top .top__logo {
    display: none;
  }
  article section.top .top__mb-bg {
    display: block;
    width: 100%;
  }
  article section.top .top__mb-bg img {
    width: 100%;
    vertical-align: top;
  }
  article section.top .top__arrow {
    top: 80%;
  }
  article section.banner .banner__top-bg--pd {
    display: none;
  }
  article section.banner .banner__top-bg--mb {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
  }
  article section.banner .banner__top-bg--mb img {
    width: 100%;
    vertical-align: top;
  }
  article section.content-group {
    background: url(../Images/bg-other1-m.jpg) no-repeat top left/100%;
    padding-bottom: 0;
  }
  article section.content-group .content-group__bg {
    display: block;
    width: 100%;
  }
  article section.content-group .content-group__bg img {
    width: 100%;
    vertical-align: top;
  }
  article section.content-group .news {
    padding: 50px 0 30px;
  }
  article section.content-group .news .news__wrap .news__header {
    width: 130px;
  }
  article section.content-group .products {
    padding-bottom: 0;
  }
  article section.content-group .products .products__wrap {
    width: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  article section.content-group .products .products__wrap .products__header .products__header-img {
    width: 130px;
  }
  article section.content-group .products .products__wrap .products__header .products__header-bg {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  article section.content-group .products .products__wrap .products__header .products__header-bg img {
    width: 100%;
    vertical-align: top;
  }
  article section.content-group .products .products__wrap .products__block {
    border-radius: 0;
    border-right-width: 0;
    border-left-width: 0;
    padding: 25px 10px;
  }
  article section.content-group .products .products__wrap .products__list {
    padding: 10px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  article section.content-group .products .products__wrap .products__ani {
    display: none;
  }
  article section.content-group .other {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  article section.banner .banner__top-bg--mb {
    height: 100px;
  }
  article section.content-group .other {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  article section.content-group .other dl {
    font-size: 14px;
  }
  article section.content-group .other .other__img {
    display: none;
  }
  article section.content-group .other .other__socials {
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  article section.banner .banner__top-bg--mb {
    height: 60px;
  }
}

.float-button__start {
  position: fixed;
  right: 0;
  bottom: 250px;
  z-index: 10;
  opacity: 0;
  width: 118px;
  height: 185px;
  background: url(../Images/gamestart-L.png) no-repeat center center;
}
.float-button__start:hover {
  background: url(../Images/gamestart-2L.png) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .float-button__start {
    display: none;
  }
}