body {
  background-color: #000000;
}

.rotation-pad {
  position: absolute;
}

.custom-btn {
  margin: 20px;
  color: #fff;
  width: 100%;
  height: auto;
  padding: 10px 10px;
  /* font-family: "Rubik", sans-serif; */
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
/* 15 */
.neon-btn {
  font-weight: 600;
  color: #ffff00;
  border: 1px solid#ff00ff;
  box-shadow: 0 0 35px #ff00ff, 0 0 35px #ff00ff inset;
  background: #ff00ff;

  z-index: 1;
}
.neon-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #ff00ff;
  box-shadow: 0 0 20px #ff00ff;
  transition: all 0.3s ease;
}
.neon-btn:active {
  color: #fff;
}
.neon-btn:active:after {
  left: 0;
  width: 100%;
}
.neon-btn:active {
  top: 2px;
}
#score-result {
  /* position: absolute; */

  /* background-color: rgba(218, 225, 230, 0.25); */
  /*  left: 45vw; */
}

.rotation-pad .region {
  /* position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(rgba(218, 225, 230, 0.25) 5%, rgba(218, 225, 230, 0.5) 95%),
    url("../images/cam.png") center center no-repeat;
  border: 2px solid rgba(218, 225, 230, 0.25);
  border-radius: 90px;
  box-shadow: 0px 0px 5px rgba(194, 200, 204, 0.55); */
  user-select: none;
}

.rotation-pad .handle {
  opacity: 0.1;
  position: absolute;
  height: 30px;
  width: 30px;
  top: 0px;
  left: 0px;
  background: radial-gradient(rgba(215, 225, 255, 0.7) 0%, rgba(215, 225, 255, 0.5) 100%);
  /*border: 1px solid rgba(145, 105, 245, 0.90);*/
  border-radius: 50%;
  box-shadow: 0px 0px 7px rgba(195, 205, 245, 0.9);
  text-align: center;
  font: 24px/44px "Courier New", Courier, monospace;
  user-select: none;
}

.movement-pad {
  position: absolute;
}

.movement-pad .region {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(rgba(218, 225, 230, 0.25) 5%, rgba(218, 225, 230, 0.5) 95%),
    url("../images/nav.png") center center no-repeat;
  border: 2px solid rgba(218, 225, 230, 0.25);
  border-radius: 90px;
  box-shadow: 0px 0px 5px rgba(194, 200, 204, 0.55);
  user-select: none;
}

.movement-pad .handle {
  opacity: 0.1;
  position: absolute;
  height: 30px;
  width: 30px;
  top: 0px;
  left: 0px;
  background: radial-gradient(rgba(215, 225, 255, 0.7) 0%, rgba(215, 225, 255, 0.5) 100%);
  /*border: 1px solid rgba(145, 105, 245, 0.90);*/
  border-radius: 50%;
  box-shadow: 0px 0px 7px rgba(195, 205, 245, 0.9);
  text-align: center;
  font: 24px/44px "Courier New", Courier, monospace;
  user-select: none;
}

.bottom-container {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.score-cnt {
  display: none;
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
