* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background: #0e8142;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
.clock {
  position: absolute;
  color: #fff;
  font-size: 1.5rem;
  background: #00c800;
  font-weight: 600;
  padding: 0.2rem 2rem;
  border-radius: 2rem;
  top: 1rem;
  left: 1rem;
  box-shadow: inset 0 5px 10px 0px rgba(0, 0, 0, 0.7),
    inset 0 -5px 10px 0px rgba(0, 0, 0, 0.7);
    z-index: 2;
    width: 270px;
    text-align: center;
}
.scoretable {
  position: absolute;
  color: #fff;
  font-size: 1.5rem;
  background: #00c800;
  font-weight: 600;
  padding: 0.2rem 2rem;
  border-radius: 2rem;
  top: 1rem;
  left: 19rem;
  box-shadow: inset 0 5px 10px 0px rgba(0, 0, 0, 0.7),
    inset 0 -5px 10px 0px rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.matcode {
  position: absolute;
  right: 6px;
  bottom: 25px;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  font-size: 0.6rem;
  color: #fff;
  font-weight: 300;
}
.logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
.bottomLine {
  position: absolute;
  bottom: 6px;
  left: 25px;
  font-size: 0.6rem;
  color: #fff;
  font-weight: 300;
}
.intro {
  background: 
    url("../images/bg.jpg") center center no-repeat;
  background-size:  cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: inset 4px 4px 12px -4px #000, inset -4px -4px 12px -4px #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
.result {
  background: 
    url("../images/bg.jpg") center center no-repeat;
  background-size:  cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: inset 4px 4px 12px -4px #000, inset -4px -4px 12px -4px #000;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  color: #fff;
  text-align: center;
  line-height: 1.235;
}
.result.show {
  display: flex;
}
.result p {
  color: #fff;
  text-align: center;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.7);
  display: block;
  font-weight: 600;
  font-size: 3rem;
  text-transform: uppercase;
}
.result h4 {
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.7);
  display: block;
  font-weight: 800;
  font-size: 5rem;
}
.betterLuck .congrats {
  display: none;
}
.congrats .betterLuck {
  display: none;
}
.intro.hide {
  display: none;
}
.intro p {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 1.235;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.7);
}
.intro p span {
  display: block;
  font-weight: 800;
  font-size: 3rem;
}
.btnPlay, .btnRePlay {
  width: 146px;
  height: 146px;
  background: url('../images/btnPlay.png');
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
  outline: 0;
  border: 0;
  box-shadow: 0px 70px 40px -30px rgb(0, 80, 0);
}
.gameWrapper {
  display: none;
  background: url("../images/platform.png") repeat-x bottom center,
    url("../images/bg.jpg") center center no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: inset 4px 4px 12px -4px #000, inset -4px -4px 12px -4px #000;
  position: relative;
}
.gameWrapper.show {
  display: block;
}
.gameWrapper.hide {
  display: none;
}
.point {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -170px;
  background-size: cover;
  box-shadow: 0px 70px 40px -30px rgb(0, 80, 0);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  transform-origin: center bottom;
}
.point.shrink {
  transform: scale(0.5);
}
.point:before {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  bottom: 11rem;
  vertical-align: text-bottom;
  position: absolute;
  line-height: 1.235;
}
.point-1 {
  background-image: url("../images/imgs/1.png");
}
.point-2 {
  background-image: url("../images/imgs/2.png");
}
.point-3 {
  background-image: url("../images/imgs/3.png");
}
.point-4 {
  background-image: url("../images/imgs/4.png");
}
.point-5 {
  background-image: url("../images/imgs/5.png");
}
.point-6 {
  background-image: url("../images/imgs/6.png");
}
.point-7 {
  background-image: url("../images/imgs/7.png");
}
.point-8 {
  background-image: url("../images/imgs/8.png");
}
.point-9 {
  background-image: url("../images/imgs/9.png");
}
.point-10 {
  background-image: url("../images/imgs/1.png");
}
.point-11 {
  background-image: url("../images/imgs/2.png");
}
.point-12 {
  background-image: url("../images/imgs/3.png");
}
.point-13 {
  background-image: url("../images/imgs/4.png");
}
.point-14 {
  background-image: url("../images/imgs/5.png");
}
.point-15 {
  background-image: url("../images/imgs/6.png");
}
.point-1:before {
  content: "LEG CRAMP";
}
.point-2:before {
  content: "HAIR HEALTH";
}
.point-3:before {
  content: "MUSCLE CRAMP";
}
.point-4:before {
  content: "DIABETES MELLITUS";
}
.point-5:before {
  content: "SUNSPOTS (SKIN REDNESS)";
}
.point-6:before {
  content: "SKIN PIGMENTATION";
}
.point-7:before {
  content: "NAFLD / NASH";
}
.point-8:before {
  content: "WRINKLES";
}
.point-9:before {
  content: "DARK SPOT ON SKIN";
}
.point-10:before {
  content: "LEG CRAMP";
}
.point-11:before {
  content: "HAIR HEALTH";
}
.point-12:before {
  content: "MUSCLE CRAMP";
}
.point-13:before {
  content: "DIABETES MELLITUS";
}
.point-14:before {
  content: "SUNSPOTS (SKIN REDNESS)";
}
.point-15:before {
  content: "SKIN PIGMENTATION";
}
.bucket {
  width: 251px;
  height: 248px;
  background: url("../images/bucket.png");
  position: absolute;
  bottom: 3.8rem;
}
