html, body {
  margin: 0 0;
  padding: 0 0;
  font-size: 62.5%;
  font-family: Roboto,Opensans,sans-serif,Arial,Helvetica,sans-serif;
  user-select: none; }

.ads-box {
  height: 320px;
  text-align: center; }
  .ads-box p {
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    transform: scale(0.8); }

header {
  width: 100%;
  height: 4.5rem;
  box-sizing: border-box;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #fff; }
  header .logo {
    justify-self: center;
    display: flex;
    justify-content: center;
    height: 80%; }
    header .logo img, header .logo svg {
      height: 100%; }
  header nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; }
    header nav label {
      cursor: pointer;
      z-index: 2; }
    header nav input[type=checkbox]:checked ~ ul {
      display: block;
      transition: 200ms ease-in; }
    header nav input[type=checkbox] {
      opacity: 0;
      float: right;
      z-index: 1;
      display: none; }
    header nav input[type=checkbox]:checked:after {
      display: flex;
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 10;
      background-color: #39A5DE; }
    header nav ul {
      display: none;
      position: absolute;
      top: 3rem;
      right: 0;
      background-color: #4BB8F1;
      margin: 0 auto;
      padding: 1rem 0 2rem;
      z-index: 99999; }
      header nav ul a {
        text-decoration: none; }
        header nav ul a li {
          list-style: none;
          padding: 1rem;
          font-weight: 400;
          font-size: 1.6rem;
          line-height: 1rem;
          letter-spacing: 2px;
          text-align: center;
          color: #fff; }
      header nav ul a:hover {
        display: block;
        background-color: #2999D4;
        padding: 1rem 0; }

.game:hover {
  transform-origin: center center;
  transform: scale(1.05);
  transition: all 0.2s linear; }
  .game:hover .game-title {
    visibility: visible !important; }
.game .game-title {
  font-size: 1.4rem;
  visibility: hidden;
  width: 100%;
  height: 50%;
  margin: 0 0;
  padding-bottom: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.6));
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  transition: all 0.2s linear; }

.image-box {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative; }
  .image-box .image-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .image-box .image-background img {
      width: 100%;
      height: 100%; }

.play-button {
  width: 8.5rem;
  height: 8.5rem;
  border: 0.4rem solid #fff;
  border-radius: 50% 50%;
  background-color: #EE4433;
  display: flex;
  justify-content: center;
  align-items: center; }
  .play-button h3 {
    margin: 0 0;
    font-size: 2rem;
    font-family: Montserrat;
    font-weight: 900;
    line-height: 1.2em;
    color: #fff; }

.more-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer; }
  .more-button-container .loadingImage {
    animation: loadingAnimation 1s linear infinite; }
  .more-button-container .load-more-button {
    width: 12rem;
    height: 4.5rem;
    background: #EE4433;
    border: 3px solid #FFFFFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .more-button-container .load-more-button h3 {
      color: #fff;
      font-size: 1.6rem;
      font-weight: bold;
      line-height: 1.15em; }

.cookie-tip {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 6rem;
  transition: all 1s;
  padding: 0.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.94);
  z-index: 9999;
  align-items: center; }
  .cookie-tip .tip-text {
    font-size: 1rem;
    color: black;
    margin: 0 0.6rem; }
    .cookie-tip .tip-text a {
      text-decoration: none;
      color: rgba(148, 110, 254, 0.8); }
  .cookie-tip .gotBtn {
    background-color: rgba(148, 110, 254, 0.8);
    color: white;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0.8rem;
    width: 30%; }

footer {
  width: 100%;
  min-height: 18rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding-top: 1.2rem; }
  footer .bg-image {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #4BB8F1; }
    footer .bg-image img, footer .bg-image svg {
      display: block;
      width: 80%; }
  footer .about-info {
    width: 100%;
    padding: 0 2.8rem 2rem;
    background-color: #2999D4;
    box-sizing: border-box; }
    footer .about-info h3 {
      text-align: center;
      font-size: 1.8rem;
      height: 3.8rem;
      color: #fff;
      margin: 0 0;
      line-height: 3.6rem; }
    footer .about-info p {
      color: #fff;
      font-size: 1.2rem;
      line-height: 1.8rem;
      margin: 0 0; }
  footer ul {
    list-style: none;
    margin: 0 0;
    padding: 0 0;
    background-color: #fff;
    display: flex;
    height: 4.5rem;
    align-items: center;
    justify-content: space-evenly; }
    footer ul li a {
      font-size: 1.2rem;
      line-height: 1.7rem;
      color: #2999D4; }

@keyframes loadingAnimation {
  to {
    transform: rotate(360deg); } }
body {
  min-height: 100vh;
  background-color: #39A5DE;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box; }

@media (min-width: 600px) {
  .headbar-pc {
    display: block; }

  .headbar-mobile {
    display: none; } }
.headbar-mobile {
  width: 100%; }

.headbar-pc {
  width: 100%; }

@media (max-width: 599px) {
  html, body {
    margin: 0 0;
    padding: 0 0;
    font-size: 62.5%;
    font-family: Roboto,Opensans,sans-serif,Arial,Helvetica,sans-serif;
    user-select: none; }

  button {
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 900;
    border: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; }

  .ads-box {
    height: 365px;
    text-align: center; }
    .ads-box p {
      color: white;
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
      margin-top: 0;
      margin-bottom: 1rem; }

  header {
    width: 100%;
    height: 4.5rem;
    box-sizing: border-box;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #fff; }
    header .logo {
      justify-self: center;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50%;
      height: 100%; }
      header .logo img {
        height: 95%; }
    header nav {
      display: flex;
      flex-direction: column;
      justify-content: center; }
      header nav label {
        cursor: pointer;
        z-index: 2; }
      header nav input[type=checkbox]:checked ~ ul {
        display: block;
        transition: 200ms ease-in; }
      header nav input[type=checkbox] {
        opacity: 0;
        float: right;
        z-index: 1;
        display: none; }
      header nav input[type=checkbox]:checked:after {
        display: flex;
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        background-color: #2999D4; }
      header nav ul {
        display: none;
        position: absolute;
        top: 4.5rem;
        right: 0;
        background-color: #4BB8F1;
        margin: 0 auto;
        padding: 1rem 0 2rem;
        z-index: 99999; }
        header nav ul a {
          text-decoration: none; }
          header nav ul a li {
            list-style: none;
            padding: 1rem;
            font-weight: 400;
            font-size: 1.6rem;
            line-height: 1rem;
            letter-spacing: 2px;
            text-align: center;
            color: #fff; }
        header nav ul a:hover {
          display: block;
          background-color: #2999D4;
          padding: 1rem 0; }

  .image-box {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative; }
    .image-box .image-background {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      .image-box .image-background img {
        width: 100%;
        height: 100%; }

  .more-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem; }
    .more-button-container .loadingImage {
      animation: loadingAnimation 1s linear infinite; }
    .more-button-container .load-more-button {
      width: 12rem;
      height: 4.5rem;
      background: #EE4433;
      border: 3px solid #FFFFFF;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center; }
      .more-button-container .load-more-button h3 {
        color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.15em; }

  .play-button {
    width: 8.5rem;
    height: 8.5rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    .play-button h3 {
      margin: 0 0;
      font-size: 2rem;
      font-family: Montserrat;
      font-weight: 900;
      line-height: 1.2em;
      color: #fff; }

  .cookie-tip {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 4.5rem;
    transition: all 1s;
    padding: 0.2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.94);
    z-index: 9999;
    align-items: center; }
    .cookie-tip .tip-text {
      font-size: 1rem;
      color: black;
      margin: 0 0.6rem; }
      .cookie-tip .tip-text a {
        text-decoration: none;
        color: rgba(148, 110, 254, 0.8); }
    .cookie-tip .gotBtn {
      background-color: rgba(148, 110, 254, 0.8);
      color: white;
      font-size: 1.6rem;
      font-weight: 400;
      padding: 0.8rem;
      width: 30%; }

  footer {
    width: 100%;
    min-height: 18rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-top: 1.2rem; }
    footer .bg-image {
      width: 100%;
      display: flex;
      justify-content: center;
      background-color: #4BB8F1; }
      footer .bg-image img {
        display: block;
        width: 80%; }
    footer .about-info {
      width: 100%;
      padding: 0 2.8rem 2rem;
      background-color: #2999D4;
      box-sizing: border-box; }
      footer .about-info h3 {
        text-align: center;
        font-size: 1.8rem;
        height: 3.8rem;
        color: #fff;
        margin: 0 0;
        line-height: 3.6rem; }
      footer .about-info p {
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.8rem;
        margin: 0 0; }
    footer ul {
      list-style: none;
      margin: 0 0;
      padding: 0 0;
      background-color: #fff;
      display: flex;
      height: 4.5rem;
      align-items: center;
      justify-content: space-evenly; }
      footer ul li a {
        font-size: 1.2rem;
        line-height: 1.7rem;
        color: #2999D4; }

  @keyframes loadingAnimation {
    to {
      transform: rotate(360deg); } }
  .headbar-pc {
    display: none; }

  .headbar-mobile {
    display: block; } }
.contact-us {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box; }

.privacy {
  width: 100%;
  flex: 1 1 auto;
  padding: 0 2rem;
  box-sizing: border-box; }

.legalterms {
  width: 100%;
  flex: 1 1 auto;
  padding: 0 2rem;
  box-sizing: border-box; }

p, li {
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
  word-break: break-all; }

h3 {
  font-size: 2.2rem;
  color: white;
  font-weight: bold; }

/*# sourceMappingURL=siteinfo.css.map */
