@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY2 {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-5px) rotate(45deg);
  }
}
@keyframes btnPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 196, 90, 0.55));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(255, 196, 90, 0.95));
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  background-color: #000000;
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  width: 100%;
  border: 0;
  vertical-align: top;
}
ul,
li {
  list-style: none;
}
article {
  position: relative;
  width: 450px;
  min-height: 100vh;
  margin: auto;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  background-color: #391e2f;
  background-image: url('../images/bg.jpg'), radial-gradient(120% 46% at 50% 100%, rgba(122, 45, 74, 0.55) 0%, rgba(57, 30, 47, 0) 70%);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom;
  background-size: 100% auto, 100% 100%;
}
article .banner {
  position: relative;
  z-index: 1;
  padding: 20px 0 0 0;
}
article .banner img {
  animation: popIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
article .enter-box {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px 0 0 0px;
}
article .enter-box .enter-btn {
  width: 61%;
  margin: 0 auto;
  cursor: pointer;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both, btnPulse 1.8s ease-in-out 1.05s infinite;
}
article .divider {
  padding: 18px 0 20px;
}
article .divider img {
  width: 428px;
  margin: 0 auto;
}
article .game-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px 10px;
  padding: 0 16px;
}
article .game-list li {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 180, 101, 0.35);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  animation: fadeUp 0.6s ease-out backwards;
  transition: transform 0.18s ease;
}
article .game-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}
article .game-list li:active {
  transform: scale(0.94);
}
article .game-list li:nth-child(1) {
  animation-delay: 0.4s;
}
article .game-list li:nth-child(2) {
  animation-delay: 0.48s;
}
article .game-list li:nth-child(3) {
  animation-delay: 0.56s;
}
article .game-list li:nth-child(4) {
  animation-delay: 0.64s;
}
article .game-list li:nth-child(5) {
  animation-delay: 0.72s;
}
article .game-list li:nth-child(6) {
  animation-delay: 0.8s;
}
article .game-list li:nth-child(7) {
  animation-delay: 0.88s;
}
article .game-list li:nth-child(8) {
  animation-delay: 0.96s;
}
article .bottom-text {
  margin-top: 0px;
}
article .bottom-text img {
  animation: fadeUp 0.8s ease-out 0.6s backwards;
}
/*# sourceMappingURL=style.css.map */