@charset "UTF-8";
/* RESET
--------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, rem, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: 1;
}

body {
  line-height: 1;
  background: #000;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote.clear:after, blockquote:after, q:before, q.clear:after, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  display: inline;
  font-style: normal;
}

.container {
  width: calc(100% - 20px);
  max-width: 1100px;
  position: relative;
  margin: auto;
  box-sizing: border-box;
  z-index: 3;
}

@font-face {
  font-family: "微軟正黑體";
}
* {
  box-sizing: border-box;
  font-family: "微軟正黑體";
  letter-spacing: 1px;
}

.en {
  font-family: "poppins" !important;
  letter-spacing: 0;
}

mark {
  background: rgba(238, 67, 103, 0.3);
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-family: "微軟正黑體";
  letter-spacing: 2px;
  scroll-behavior: smooth;
  /* 軌道（背景） */
  /* 滑塊（可以移動的部分） */
  /* 滑塊 hover 時 */
}
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
  }
}
html ::-webkit-scrollbar, body ::-webkit-scrollbar {
  width: 8px; /* 或 height: 8px; 用於水平滾動條 */
}
html ::-webkit-scrollbar-track, body ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
  border-radius: 4px;
}
html ::-webkit-scrollbar-thumb, body ::-webkit-scrollbar-thumb {
  background: #ee4367;
  border-radius: 4px;
}
html ::-webkit-scrollbar-thumb:hover, body ::-webkit-scrollbar-thumb:hover {
  background: #3798ef;
}

img {
  user-select: none;
}

.clear:before, .clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

iframe {
  display: block;
}

button {
  cursor: pointer;
}

table {
  width: 100%;
}
table th, table td {
  vertical-align: middle;
}

.table {
  display: table;
}

.tr {
  display: table-row;
}

.th,
.td {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.breakAll {
  word-break: break-all !important;
}

.inblock {
  font-size: 0;
  letter-spacing: 0;
}
.inblock > * {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 1px;
}

/* position */
/* margin */
/* padding */
/* font-size */
@keyframes pulse {
  50% {
    background: rgb(255, 255, 255);
  }
}
#loading {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
}

.loading-pulse {
  position: relative;
  margin: auto;
  width: 6px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  animation: pulse 750ms infinite;
  animation-delay: 250ms;
}
.loading-pulse:before, .loading-pulse:after {
  content: "";
  position: absolute;
  display: block;
  height: 16px;
  width: 6px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  animation: pulse 750ms infinite;
}
.loading-pulse:before, .loading-pulse.clear:after {
  left: -12px;
}
.loading-pulse:after {
  left: 12px;
  animation-delay: 500ms;
}

.wrapper {
  width: 100%;
  height: 100%;
  margin: auto;
  padding-bottom: 0;
  position: fixed;
  background-color: #ffede1;
  top: 0;
  left: 0;
  padding: 0;
  overflow: hidden;
}

audio {
  display: none;
}

.bgloop {
  width: 100%;
  height: 100;
}

.btn {
  width: 100%;
  text-align: center;
  margin: 20px 0 0 0;
  position: relative;
  z-index: 99px;
}
.btn a {
  display: inline-flex;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  background-color: #ee4367;
  border-radius: 50px;
  padding: 15px 20px;
  min-width: 150px;
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  margin: 0 15px;
  box-shadow: 0px 5px 0px #909090;
}
@media screen and (max-width: 990px) {
  .btn a {
    font-size: 1.5rem;
    margin: 0 10px;
    padding: 15px 15px;
  }
}
.btn a:hover, .btn a:focus {
  margin-top: 5px;
  box-shadow: 0px 0px 0px #676767;
}
.btn a img {
  width: 20px;
  margin-left: 10px;
}
.btn a.btn-gray {
  background-color: lightgray;
}
.btn a.btn-gray:before, .btn a.btn-gray.clear:after {
  border: 1px solid lightgray;
}

.rotate_mb {
  width: 100%;
  height: 100%;
  background: #000;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (orientation: portrait) {
  .rotate_mb {
    display: flex;
  }
}
@media (orientation: landscape) {
  .rotate_mb {
    display: none;
  }
}
.rotate_mb .rotate_info {
  display: inline-block;
  text-align: center;
  width: 90%;
  margin-top: -50px;
  text-align: center;
}
.rotate_mb .rotate_info br {
  display: none;
}
@media screen and (max-width: 990px) {
  .rotate_mb .rotate_info br {
    display: block;
  }
}
.rotate_mb .rotate_info p {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 2;
}
@media screen and (max-width: 990px) {
  .rotate_mb .rotate_info p {
    font-size: 4rem;
  }
}
.rotate_mb .rotate_info img {
  max-width: 100px;
  margin: auto;
}
@media screen and (max-width: 990px) {
  .rotate_mb .rotate_info img {
    max-width: 200px;
  }
}

.filter {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.filter.start, .filter.final, .filter.fail {
  display: flex;
  align-items: center;
}
.filter.start h1, .filter.final h1, .filter.fail h1 {
  position: absolute;
  opacity: 0;
}
.filter.start .start_box, .filter.final .start_box, .filter.fail .start_box {
  position: absolute;
  width: 100%;
  max-width: 1000px;
  z-index: 2;
  top: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 990px) {
  .filter.start .start_box, .filter.final .start_box, .filter.fail .start_box {
    top: 10%;
  }
  .filter.start .start_box .title, .filter.final .start_box .title, .filter.fail .start_box .title {
    width: 60%;
  }
}
.filter.start .start_box .title, .filter.final .start_box .title, .filter.fail .start_box .title {
  animation: pulse 2s linear infinite alternate;
}
.filter.start .start_box .startBtn, .filter.final .start_box .startBtn, .filter.fail .start_box .startBtn {
  animation: pulse 2s linear infinite alternate;
}
.filter.start .element, .filter.final .element, .filter.fail .element {
  background: none;
}
.filter.start .cover, .filter.final .cover, .filter.fail .cover {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.filter.start .cover.cover4, .filter.final .cover.cover4, .filter.fail .cover.cover4 {
  left: 40%;
  bottom: 0;
  width: 20%;
  height: auto;
  position: absolute;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .filter.start .pc, .filter.final .pc, .filter.fail .pc {
    display: none;
  }
}
.filter.start .mobile, .filter.final .mobile, .filter.fail .mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .filter.start .mobile, .filter.final .mobile, .filter.fail .mobile {
    display: block;
  }
}
.filter.start p.title, .filter.final p.title, .filter.fail p.title {
  font-size: 3rem;
  font-weight: boldl;
  color: #3798ef;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 2px #3798ef;
}
@media screen and (max-width: 1440px) {
  .filter.start p.title, .filter.final p.title, .filter.fail p.title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .filter.start p.title, .filter.final p.title, .filter.fail p.title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .filter.start p.title, .filter.final p.title, .filter.fail p.title {
    font-size: 1.9rem;
  }
}
.filter.start p.type, .filter.final p.type, .filter.fail p.type {
  font-size: 3rem;
  color: #ee4367;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .filter.start p.type, .filter.final p.type, .filter.fail p.type {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .filter.start p.type, .filter.final p.type, .filter.fail p.type {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .filter.start p.type, .filter.final p.type, .filter.fail p.type {
    font-size: 1.3rem;
  }
}
.filter.start p.rule, .filter.final p.rule, .filter.fail p.rule {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 990px) {
  .filter.start p.rule, .filter.final p.rule, .filter.fail p.rule {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.filter.start .circle, .filter.final .circle, .filter.fail .circle {
  top: 12%;
  left: 5%;
  padding: 140px;
  text-align: center;
  position: absolute;
  background-image: url(../images/cover_circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter.start .circle img, .filter.final .circle img, .filter.fail .circle img {
  width: 50%;
  margin: auto;
}
.filter.final .title, .filter.fail .title {
  width: 60%;
  margin: auto;
}
.filter.final p.rule, .filter.fail p.rule {
  color: #fff;
}
@media screen and (max-width: 990px) {
  .filter.final p.rule, .filter.fail p.rule {
    margin-top: -50px;
  }
}
.filter .closed {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
  border: solid 2px #ee4367;
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.filter .closed span {
  width: 70%;
  height: 3px;
  position: absolute;
  background: #ee4367;
  transform: rotate(45deg);
  transition: 0.3s linear;
}
.filter .closed span:nth-child(2) {
  transform: rotate(-45deg);
}
.filter .closed:hover span {
  transform: rotate(-45deg);
}
.filter .closed:hover span:nth-child(2) {
  transform: rotate(45deg);
}
.filter .board {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50px;
  border: 3px solid #ee4367;
  width: 100%;
  max-width: 570px;
  min-height: 250px;
  padding: 30px;
  background: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .filter .board {
    margin: 0 15px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 480px) {
  .filter .board {
    min-height: auto;
  }
}
.filter .board a {
  text-decoration: none;
  color: #fff;
  margin-top: 5px;
}
.filter .board .alertEffect {
  width: 35px;
  height: 35px;
  background: #fff;
  padding: 5px;
  display: inline-block;
  position: relative;
  border: 3px solid #ee4367;
  border-radius: 50px;
  margin-left: 5px;
  animation: 1s alert alternate infinite;
}
.filter .board .ansB {
  margin-top: 20px;
}
.filter .board .ans {
  width: auto;
  position: relative;
  background: #ee4367;
  cursor: pointer;
}
.filter .board .ans span {
  width: 45px;
  height: 45px;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 2rem;
  color: #3798ef;
  font-family: "poppins";
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .filter .board .ans span {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}
.filter .board a.ans {
  width: auto;
  cursor: pointer;
  height: auto;
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 10px 20px 10px 10px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  border-radius: 50px;
  background: #3798ef;
  position: relative;
  white-space: nowrap;
  margin: 10px 10px;
}
.filter .board a.ans:hover, .filter .board a.ans:focus {
  background: #ee4367;
}
.filter .board a.ans:hover span, .filter .board a.ans:focus span {
  color: #ee4367;
}
@media screen and (max-width: 990px) {
  .filter .board a.ans {
    padding: 8px 15px 8px 8px;
    font-size: 1.5rem;
  }
}
.filter .board .levelStar {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .filter .board .levelStar {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
.filter .board .levelStar a {
  width: 20%;
  height: 100px;
  display: inline-block;
  margin: 20px 1% 0 1%;
  background-size: contain;
  position: relative;
  background-repeat: no-repeat;
  opacity: 1;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .filter .board .levelStar a {
    width: 30%;
    height: 80px;
    margin: 0px 1%;
  }
}
.filter .board .title {
  width: 80%;
  font-size: 2.5rem;
  font-weight: bolder;
  color: #e8a82c;
  margin: 50px auto 0px auto;
  animation: pulse 3s linear infinite alternate;
}
@media screen and (max-width: 768px) {
  .filter .board .title {
    margin: 0px auto 0px auto;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  .filter .board .title {
    margin: 0px auto 0px auto;
    width: 100%;
    font-size: 1.3rem;
  }
}
.filter .board p {
  font-size: 1.5rem;
  color: #000000;
  line-height: 1.5;
}
@media screen and (max-width: 990px) {
  .filter .board p {
    font-size: 1.6rem;
  }
}
.filter .board p.pointCount, .filter .board p.pointHis {
  color: yellow;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .filter .board p.pointCount, .filter .board p.pointHis {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .filter .board p.pointCount, .filter .board p.pointHis {
    font-size: 1.1rem;
  }
}
.filter .board p span {
  font-weight: bold;
}
.filter .board2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50px;
  border: 3px solid #ee4367;
  width: 100%;
  max-width: 570px;
  min-height: 250px;
  padding: 30px;
  background: rgb(255, 255, 255);
}
.filter .board2 .gradient_b {
  display: inline-block;
  border-radius: 50px;
  background: #ee4367;
  overflow: hidden;
  padding: 3px 3px;
  margin: 10px 0;
  width: auto;
  max-width: 80%;
  z-index: 1;
  position: relative;
}
.filter .board2 .logName {
  padding: 10px 15px;
  border-radius: 50px;
  overflow: hidden;
  text-align: center;
  color: #000000;
  background: rgb(252, 250, 250);
  border: 0;
  font-size: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .filter .board2 .logName {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}
.filter .board2 p {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000000;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .filter .board2 p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .filter .board2 p {
    font-size: 1rem;
  }
}
.filter .board2 p.pointCount, .filter .board2 p.pointHis {
  color: yellow;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .filter .board2 p.pointCount, .filter .board2 p.pointHis {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .filter .board2 p.pointCount, .filter .board2 p.pointHis {
    font-size: 1.1rem;
  }
}
.filter .board2 p span {
  font-weight: bold;
}
.filter .board2 div {
  display: flex;
  align-items: center;
}
.filter .board2 .login-wrapper {
  margin-top: 1rem;
  width: 90%;
  justify-content: space-around;
}
.filter .board2 .login-wrapper label {
  font-weight: bold;
  margin-right: 1rem;
  font-size: 24px;
}
.filter .board2 #confirm {
  display: inline-flex;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  background-color: #ee4367;
  border-radius: 50px;
  padding: 15px 20px;
  min-width: 150px;
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  margin: 0 15px;
  box-shadow: 0px 5px 0px #909090;
  border: 0;
}
.filter .board2 #confirm:hover {
  margin-top: 5px;
  box-shadow: 0px 0px 0px #676767;
  border: 0;
}
.filter .board2 #confirm:active {
  margin-top: 5px;
  box-shadow: 0px 0px 0px #676767;
  border: 0;
}
.filter .board2 #confirm:disabled {
  background-color: #ccc; /* 灰色背景 */
  color: #666; /* 字也變灰 */
  cursor: not-allowed; /* 滑鼠游標變成禁止符號 */
  display: inline-flex;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50px;
  padding: 15px 20px;
  min-width: 150px;
  text-align: center;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 2px;
  margin: 0 15px;
  box-shadow: 0px 5px 0px #909090;
  border: 0;
}
.filter .board2 .error-msg {
  color: red;
  font-size: 16px;
  display: block;
  margin-top: 4px;
}

.element {
  width: auto;
  position: absolute;
  display: inline-block;
  right: 20px;
  top: 15px;
  z-index: 999;
  padding: 10px 10px;
  background-size: 100% 100%;
}
@media screen and (max-width: 1024px) {
  .element {
    right: 10px;
    top: 0px;
  }
}
.element .btn_sound {
  width: 70px;
  height: 70px;
  background: #ee4367;
  border-radius: 50px;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 18px;
}
@media screen and (max-width: 1024px) {
  .element .btn_sound {
    width: 40px;
    height: 40px;
    padding: 10px;
    right: 10px;
    top: 10px;
  }
}
.element .time {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: #fff;
  border: 12px solid #e8a82c;
  position: absolute;
  right: 100px;
  top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #ee4367;
}
@media screen and (max-width: 1024px) {
  .element .time {
    width: 60px;
    height: 60px;
    right: 0;
    top: 55px;
    border: 5px solid #e8a82c;
    font-size: 2rem;
  }
}

.game {
  background-size: cover;
  background-position: center;
}
.game:before, .game.clear:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-size: cover;
  background-position: center;
  animation: animate1 0.8s infinite;
}
.game article {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #e8a82c;
}
.game section {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  text-align: center;
  display: flex;
  align-items: center;
}
.game section .people {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 3;
}
@media screen and (max-width: 990px) {
  .game section .people {
    right: 0px;
  }
}
.game section .people.p1 {
  width: 30%;
}
@media screen and (max-width: 990px) {
  .game section .people.p1 {
    width: 20%;
  }
}
.game section .people.p2 {
  width: 20%;
}
@media screen and (max-width: 990px) {
  .game section .people.p2 {
    width: 15%;
  }
}
.game section .people.p3 {
  width: 20%;
}
@media screen and (max-width: 990px) {
  .game section .people.p3 {
    width: 15%;
  }
}
.game section .people.p4, .game section .people.p5 {
  width: 20%;
  right: auto;
  left: 10px;
  z-index: 4;
}
@media screen and (max-width: 990px) {
  .game section .people.p4, .game section .people.p5 {
    width: 15%;
    left: -10px;
  }
}
.game section .box {
  height: auto;
  width: 90%;
  max-width: 70%;
  min-height: 70vh;
  margin: auto;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  background-color: #c0c0c0;
  position: relative;
  z-index: 3;
  border: 3px solid #e7e7e7;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 990px) {
  .game section .box {
    min-height: 60vh;
  }
}
.game section .box .browserbar {
  width: 100%;
  height: 30px;
  padding: 5px 10px;
  background: linear-gradient(#0055d4, #010089);
  text-align: right;
  border-radius: 5px;
}
.game section .box .browserbar img {
  height: 100%;
  width: auto;
}
.game section .box .light {
  width: 6%;
  position: absolute;
  top: 5%;
  right: 100%;
}
@media screen and (max-width: 480px) {
  .game section .box .light {
    height: 40%;
    bottom: 85%;
    width: auto;
    right: auto;
    top: auto;
    transform: rotate(90deg);
  }
}
.game section .box .contain {
  position: relative;
  width: auto;
  height: 100%;
  border-top: 15px solid #c0c0c0;
}
.game section .box .contain .innerBorder {
  border: 3px solid #4a4a4a;
  height: 100%;
  background: #fff;
  position: relative;
  min-height: calc(70vh - 40px);
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  .game section .box .contain .innerBorder {
    min-height: calc(50vh - 40px);
    padding: 10px 30px 20px 30px;
  }
}
.game section .box .contain .innerBorder p {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 1440px) {
  .game section .box .contain .innerBorder p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 990px) {
  .game section .box .contain .innerBorder p {
    font-size: 15px;
  }
}
.game section .box .contain .innerBorder p span {
  color: #ee4367;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.5;
  margin: 0 5px;
}
@media screen and (max-width: 990px) {
  .game section .box .contain .innerBorder p span {
    font-size: 15px;
  }
}
.game section .box .contain .innerBorder ul {
  text-align: left;
  margin: 10px 0;
}
@media screen and (max-width: 990px) {
  .game section .box .contain .innerBorder ul {
    margin: 5px 0;
  }
}
.game section .box .contain .innerBorder ul li {
  list-style: disc;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 990px) {
  .game section .box .contain .innerBorder ul li {
    font-size: 13px !important;
    margin-bottom: 5px;
  }
}
.game section .box .contain .innerBorder ul li::marker {
  color: #ee4367;
}
.game section .box .contain .innerBorder mark {
  color: #ee4367;
  background: none;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0 5px;
}
@media screen and (max-width: 990px) {
  .game section .box .contain .innerBorder mark {
    font-size: 14px;
  }
}
.game section .box .contain .innerBorder .innerBootom {
  width: calc(100% - 30px);
  position: absolute;
  height: 30px;
  background-color: #e6e6e6;
  display: flex;
  bottom: 0;
  left: 0;
  justify-content: space-between;
}
.game section .box .contain .innerBorder .innerBootom img {
  height: 100%;
  width: auto;
}
.game section .box .contain .innerBorder .innerRight {
  bottom: 0;
  right: 0;
  width: 30px;
  position: absolute;
  height: 100%;
  background-color: #e6e6e6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.game section .box .contain .innerBorder .innerRight img {
  width: 100%;
  height: auto;
}
.game .bg img {
  height: 100%;
}
.game .menuBtn {
  width: 70px;
  position: absolute;
  right: 10px;
  top: 35px;
  display: none;
  z-index: 999;
  cursor: pointer;
}
.game .menuBtn:hover, .game .menuBtn:focus {
  -webkit-filter: contrast(150%);
}
@media screen and (max-width: 1200px) {
  .game .menuBtn {
    display: block;
    width: 50px;
    top: 40px;
    right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .game .menuBtn {
    display: block;
    width: 50px;
    top: 30px;
    right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .game .menuBtn {
    display: block;
    width: 50px;
    top: 10px;
    right: 15px;
  }
}
.game .menu {
  left: 0;
  top: -110vh;
  z-index: 998;
  width: 100%;
  height: calc(100% - 50px);
  margin-top: 50px;
  display: none;
  padding-top: 100px;
  position: absolute;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.5s linear;
  background-image: url(../images/bg_element_mobile.webp);
  background-size: 100% 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1300px) {
  .game .menu {
    display: block;
  }
}
.game .menu.active {
  top: 0vh;
}
.game .menu > div {
  text-align: center;
  clear: both;
  float: none;
}
.game .menu div {
  float: none;
}
.game .menu .btn {
  width: 100%;
  max-width: 200px;
  text-align: center;
  margin: 30px auto 0 auto;
  position: relative;
  display: block;
  float: none;
  clear: both;
}
@media screen and (max-width: 480px) {
  .game .menu .btn {
    max-width: 150px;
  }
}
.game .menu .name {
  width: 100%;
  max-width: 300px;
  text-align: center;
  position: relative;
  margin: auto;
  clear: both;
  float: none;
}
@media screen and (max-width: 1200px) {
  .game .menu .name {
    max-width: 250px;
    display: block !important;
  }
}
.game .menu .name input {
  position: absolute;
  color: #fff;
  font-size: 1.5rem;
  top: 2px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  left: 0px;
}
@media screen and (max-width: 1366px) {
  .game .menu .name input {
    font-size: 1.5rem;
    left: 0px;
  }
}
@media screen and (max-width: 480px) {
  .game .menu .name input {
    font-size: 1rem;
  }
}
.game .menu .name img {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.logo {
  position: absolute;
  left: 40px;
  top: 40px;
  text-align: center;
  display: inline-block;
  z-index: 1000;
  width: auto;
}
@media screen and (max-width: 480px) {
  .logo {
    top: 30px;
    left: 30px;
  }
}
.logo a {
  display: inline-block;
  transition: 0.3s;
}
.logo a:hover, .logo a:focus {
  padding-left: 10px;
}
.logo a:hover img, .logo a:focus img {
  -webkit-filter: contrast(150%);
}
.logo img {
  width: 100%;
  max-width: 380px;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .logo img {
    max-width: 225px;
  }
}
@media screen and (max-width: 320px) {
  .logo img {
    max-width: 180px;
  }
}

.img,
.imgIn {
  display: inline-block;
  position: relative;
  text-align: center;
}
.img img:nth-child(1),
.imgIn img:nth-child(1) {
  top: 0;
  left: 0;
}
.img img:nth-child(2),
.imgIn img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.imgIn img:nth-child(1) {
  animation: animate2 0.8s infinite;
}
.imgIn img:nth-child(2) {
  animation: animate1 0.8s infinite;
}

input::placeholder {
  color: #ccc;
}

video {
  width: 100%;
  height: 100%;
}

#game {
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #e8a82c;
  top: 0;
  left: 0;
  position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 990px) {
  #game {
    top: 0;
  }
}
#game .icon_computer {
  width: 70px;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}
#game img.q_corner {
  width: 30%;
  position: absolute;
  z-index: 2;
}
#game img.q_corner:nth-child(1) {
  left: 0;
  top: 0;
}
#game img.q_corner:nth-child(2) {
  right: 0;
  bottom: 0;
  transform: rotateX(180deg) rotateY(180deg);
}
#game .bgloop {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #game .bgloop {
    display: none;
  }
}
#game .gameMain {
  width: 100%;
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#game .gameMain .cut1 video {
  object-position: center;
}
#game .gameMain .cut6 video {
  object-position: bottom;
}
#game .gameMain .cut7 video {
  object-position: bottom;
}
#game .gameMain .q_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
#game .gameMain .q_box .q {
  width: 100%;
  height: 100%;
}
#game .gameMain .q_box .q .q_ans {
  width: 100%;
  height: 100%;
  position: absolute;
}
#game .gameMain .q_box .q .q_ans .ans {
  width: auto;
  position: absolute;
}
#game .gameMain .q_box .q .q_ans .ans.selected span {
  background: #ee4367;
  color: #fff;
}
#game .gameMain .q_box .q .q_ans span {
  width: 45px;
  height: 45px;
  display: inline-flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 3px solid #ee4367;
  font-size: 2rem;
  color: #ee4367;
  font-family: "poppins";
  font-weight: 700;
  position: absolute;
  left: -15px;
  top: -15px;
}
@media screen and (max-width: 768px) {
  #game .gameMain .q_box .q .q_ans span {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}
#game .gameMain .q_box .q .btn_ans {
  margin-left: 5%;
  width: 80%;
  height: 100%;
  display: flex;
  padding-bottom: 5%;
  align-items: flex-end;
  justify-content: space-between;
}
#game .gameMain .q_box .q .btn_ans.ansStart {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #game .gameMain .q_box .q .btn_ans {
    width: 85%;
  }
}
#game .gameMain .q_box .q .btn_ans span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fff;
  margin-right: 10px;
  color: #3798ef;
  font-size: 1.5rem;
  font-family: "poppins";
  font-weight: bold;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q .btn_ans span {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}
#game .gameMain .q_box .q .btn_ans a.ans {
  width: auto;
  min-width: 25vw;
  height: auto;
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 15px 10px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  border-radius: 50px;
  background: #3798ef;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q .btn_ans a.ans {
    padding: 8px 20px 8px 8px;
    font-size: 1.5rem;
  }
}
#game .gameMain .q_box .q .btn_ans a.ans:hover, #game .gameMain .q_box .q .btn_ans a.ans:focus {
  background: #ee4367;
}
#game .gameMain .q_box .q .btn_ans a.ans:hover span, #game .gameMain .q_box .q .btn_ans a.ans:focus span {
  color: #ee4367;
}
#game .gameMain .q_box .q .btn_ans a.auto {
  min-width: auto;
  margin: 0 10px;
  padding: 15px 20px 15px 10px;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q1 .q_ans {
    top: -10%;
  }
}
#game .gameMain .q_box .q.q1 .ans:nth-child(1) {
  left: 33%;
  margin-top: 7%;
  width: 33%;
  height: 30vh;
}
#game .gameMain .q_box .q.q1 .ans:nth-child(2) {
  width: 32%;
  left: 16%;
  bottom: 27%;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q1 .ans:nth-child(2) {
    width: 34%;
    left: 20%;
    bottom: 22%;
  }
}
#game .gameMain .q_box .q.q1 .ans:nth-child(3) {
  width: 31%;
  right: 16%;
  bottom: 25%;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q1 .ans:nth-child(3) {
    width: 36%;
    right: 8%;
    bottom: 18%;
  }
}
#game .gameMain .q_box .q.q1 .ans:nth-child(4) {
  width: 31%;
  left: 18%;
  bottom: 9%;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q1 .ans:nth-child(4) {
    width: 36%;
    left: 11%;
    bottom: 11%;
  }
}
#game .gameMain .q_box .q.q2 .alertEffect {
  width: 45px;
  height: 45px;
  left: 33%;
  top: 10%;
  background: #fff;
  padding: 10px;
  display: block;
  position: absolute;
  border: 3px solid #ee4367;
  border-radius: 50px;
  animation: 1s alert alternate infinite;
}
#game .gameMain .q_box .q.q3 {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q3 .btn_ans {
    padding-bottom: 20%;
  }
}
@media screen and (max-width: 425px) {
  #game .gameMain .q_box .q.q3 .btn_ans {
    padding-bottom: 40%;
  }
}
#game .gameMain .q_box .q.q4 .btn_ans {
  margin-left: 10%;
  width: 85%;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q4 .btn_ans {
    padding-bottom: 20%;
  }
}
@media screen and (max-width: 425px) {
  #game .gameMain .q_box .q.q4 .btn_ans {
    padding-bottom: 40%;
  }
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q5 .btn_ans {
    padding-bottom: 15%;
  }
}
#game .gameMain .q_box .q.q6 .btn_ans {
  width: 60%;
  margin-left: 22%;
}
#game .gameMain .q_box .q.q6 .ans:nth-child(1) {
  bottom: 8%;
}
#game .gameMain .q_box .q.q6 .ans:nth-child(2) {
  bottom: 22%;
}
@media screen and (max-width: 1440px) {
  #game .gameMain .q_box .q.q6 .btn_ans {
    width: 65%;
    margin-left: 20%;
  }
  #game .gameMain .q_box .q.q6 .ans:nth-child(2) {
    bottom: 25%;
  }
}
@media screen and (max-width: 1180px) {
  #game .gameMain .q_box .q.q6 .btn_ans {
    width: 77%;
    margin-left: 15%;
  }
  #game .gameMain .q_box .q.q6 .ans:nth-child(2) {
    bottom: 25%;
  }
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q6 .btn_ans {
    width: 70%;
    margin-left: 18%;
  }
  #game .gameMain .q_box .q.q6 .ans:nth-child(1) {
    bottom: 15%;
  }
  #game .gameMain .q_box .q.q6 .ans:nth-child(2) {
    bottom: 15%;
  }
}
#game .gameMain .q_box .q.q7 .ans:nth-child(1) {
  left: 22%;
  bottom: 5%;
}
#game .gameMain .q_box .q.q7 .ans:nth-child(2) {
  bottom: 20%;
}
#game .gameMain .q_box .q.q7 .btn_ans {
  padding-bottom: 15%;
}
#game .gameMain .q_box .q.q8 .btn_ans {
  height: 60%;
}
#game .gameMain .q_box .q.q8 .btn_ans {
  justify-content: space-around;
}
#game .gameMain .q_box .q.q9 .btn_ans {
  width: 100%;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 990px) {
  #game .gameMain .q_box .q.q9 .btn_ans {
    padding-bottom: 7%;
  }
}
#game .gameMain .q_box .q.q10 .btn_ans {
  padding-top: 5%;
  align-items: center;
  justify-content: center;
}
#game #sec3 {
  width: 100%;
  height: 100%;
  font-size: 7.5rem;
  font-family: arial;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  z-index: 90;
}
#game .level {
  width: 100%;
  max-width: 900px;
  height: 100%;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1500px) {
  #game .level {
    max-width: 450px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #game .level {
    width: 80%;
    margin: auto;
  }
}
#game .level .gameCard {
  width: 100%;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 50% 50% 50% 50%;
  grid-gap: 20px;
  position: relative;
}
#game .level .gameCard:after {
  content: "";
  display: block;
  padding-bottom: 170%;
}
@media screen and (max-width: 480px) {
  #game .level .gameCard {
    width: 70%;
    grid-template-columns: 50% 50%;
    grid-template-rows: 25% 25% 25% 25%;
  }
  #game .level .gameCard:after {
    padding-bottom: 270%;
  }
}
#game .level.level2 .gameCard {
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 33% 33% 33% 33%;
}
#game .level.level2 .gameCard:after {
  padding-bottom: 280%;
}
@media screen and (max-width: 480px) {
  #game .level.level2 .gameCard {
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 25% 25% 25% 25%;
    left: -15px;
  }
  #game .level.level2 .gameCard:after {
    padding-bottom: 280%;
  }
}
#game .level.level3 .gameCard {
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 25% 25% 25% 25%;
  width: 80%;
}
#game .level.level3 .gameCard:after {
  padding-bottom: 320%;
}
@media screen and (max-width: 480px) {
  #game .level.level3 .gameCard {
    width: 95%;
    grid-gap: 5px;
    left: -10px;
  }
  #game .level.level3 .gameCard:after {
    padding-bottom: 350%;
  }
}
#game .ansBox {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.84);
  width: auto;
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  display: none;
  z-index: 99;
}
@media screen and (max-width: 480px) {
  #game .ansBox {
    margin: 2%;
    padding: 15px 50px;
  }
}
#game .ansBox .closeAns {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: url(../images/btn_close3.webp) no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 10px;
}
#game .ansBox .ansT {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  #game .ansBox .ansT {
    font-size: 1.25rem;
  }
}
#game .ansBox p {
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  #game .ansBox p {
    font-size: 0.9rem;
  }
}
#game .ansBox img {
  width: 100%;
  max-width: 100px;
  margin: 10px auto;
}
#game .card {
  float: left;
  text-align: center;
  display: block;
  perspective: 500px;
  position: relative;
  cursor: pointer;
  z-index: 50;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#game .card .inside {
  width: 100%;
  height: 100%;
  display: block;
  transform-style: preserve-3d;
  transition: 0.4s ease-in-out;
  padding: 0 !important;
}
#game .card .inside.picked, #game .card .inside.matched, #game .card .inside.revew {
  transform: rotateY(180deg);
}
#game .card .inside.matched {
  animation: 0.5s matchAnim ease-in-out;
  animation-delay: 0.4s;
}
#game .card .inside.matched a {
  border: none !important;
}
#game .card .front,
#game .card .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  display: block !important;
  background-position: center !important;
  padding: 0 !important;
  border-radius: 20px;
  padding: 0px !important;
}
@media screen and (max-width: 480px) {
  #game .card .front,
  #game .card .back {
    border-radius: 10px;
  }
}
#game .card .front img,
#game .card .back img {
  max-width: 100%;
  height: 100%;
  display: block;
  margin: 0px auto 0 auto;
  text-align: center;
}
#game .card .front {
  transform: rotateY(-180deg);
  padding: 0;
}
@media screen and (max-width: 480px) {
  #game .card .front {
    border-radius: 10px;
  }
}
#game .card .back {
  transform: rotateX(0);
  background-size: 100% 100%;
}

@keyframes tail {
  0% {
    width: 0;
  }
  30% {
    width: 100px;
  }
  100% {
    width: 0;
  }
}
@keyframes shining {
  0% {
    width: 0;
  }
  50% {
    width: 30px;
  }
  100% {
    width: 0;
  }
}
@keyframes shooting {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
  }
}
@keyframes sky {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@keyframes animate1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animate2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes star {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes boom {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bg {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(0deg);
  }
  51% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes und {
  from {
    top: 0;
  }
  to {
    top: 5px;
  }
}
@keyframes und3 {
  from {
    top: 30%;
  }
  to {
    top: 33%;
  }
}
@keyframes und2 {
  from {
    margin-top: 0%;
  }
  to {
    margin-top: 1%;
  }
}
@keyframes man {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-5deg);
  }
}
@keyframes alert {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}/*# sourceMappingURL=css.css.map */