.debug {
  position: fixed;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-family: monospace;
  font-size: 1.6rem;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-image: url("pirate.jpeg");
  background-color: rgba(0, 0, 0, 0.507);
  background-size: cover;
  background-blend-mode: darken;
  /* background: linear-gradient(45deg, grey 0%, lightgray 100%); */
}

.slots {
  position: relative;
  width: 20rem;
  height: 18rem;
  display: flex;
  justify-content: space-between;
  padding: 23.7px;
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, lightgray 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.slots::before, .slots::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
}
.slots::before {
  left: 0;
  transform: translate(-200%, -50%);
}
.slots::after {
  right: 0;
  transform: translate(200%, -50%);
}
@keyframes win1 {
  0% {
    background: linear-gradient(45deg, orange 0%, yellow 100%);
    box-shadow: 0 0 80px orange;
  }
  100% {
    background: linear-gradient(45deg, grey 0%, lightgrey 100%);
    box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
  }
}
@keyframes win2 {
  0% {
    background: linear-gradient(45deg, lightblue 0%, lightgreen 100%);
    box-shadow: 0 0 80px lightgreen;
  }
  100% {
    background: linear-gradient(45deg, grey 0%, lightgrey 100%);
    box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
  }
}
.slots.win1 {
  animation: win1 200ms steps(2, end) infinite;
}
.slots.win2 {
  animation: win2 200ms steps(2, end) infinite;
}
.slots .reel {
  position: relative;
  width: 79px;
  height: 237px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  overflow: hidden;
  background-image: url("sprite.png");
  background-position: 0 0;
  background-repeat: repeat-y;
}
.slots .reel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);
}
.slots p {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translate(-50%, calc(100% + 30px));
  text-align: center;
  font-size: 0.8rem;
  color: #444;
}
.slots p a {
  color: red;
  font-weight: 700;
}


.controls {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  margin-top: 20px;
  background: white;
  padding: 10px;
  border: 1px solid rgba(black, 0.3);
  border-radius: 3px;
}

.controls .mini-control{
  border-radius: 10px;
  padding: 1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.829);
  background-color: #4e0d0d;
  margin-bottom: 4px;
}
.controls .mini-control label{
  font-weight: bolder;
}
#stake {
  padding: 5px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  padding-top: 2rem;
}

#spinBtn{
  border-radius: 50%;
  border: 0;
  background: rgb(209,17,17);
  background: linear-gradient(288deg, rgba(209,17,17,0.4514180672268907) 0%, rgba(162,239,255,0.47102591036414565) 100%);
  transition: 2s;
}
#spinBtn i{
  padding: 10px;
  color: rgba(0, 0, 0, 0.822);
  font-size: 3rem;
  cursor: pointer;
}
#spinBtn:hover{
  background: rgb(209,17,17);
background: linear-gradient(80deg, rgba(209,17,17,0.6138830532212884) 0%, rgba(162,239,255,0.47102591036414565) 100%);
}

#autoSpinBtn{
  border-radius: 50%;
  border: 0;
  background: rgb(209,17,17);
  background: linear-gradient(288deg, rgba(209, 17, 17, 0.747) 0%, rgba(162,239,255,0.47102591036414565) 100%);
  transition: .5s;
  margin-left: 1.2rem;
  transition: all .3s;
}
#autoSpinBtn i{
  padding: 10px;
  color: rgba(0, 0, 0, 0.753);
  font-size: 1.5rem;
}
#autoSpinBtn:hover{
  color: yellow;
  background: rgb(209,17,17);
  background: linear-gradient(288deg, rgba(216, 9, 9, 0.842) 0%, rgba(162,239,255,0.47102591036414565) 100%);
}

#stopSpinBtn{
  border-radius: 50%;
  border: 0;
  background: rgb(209,17,17);
  background: linear-gradient(288deg, rgba(209, 17, 17, 0.747) 0%, rgba(162,239,255,0.47102591036414565) 100%);
  transition: .5s;
  margin-left: 1.2rem;
}
#stopSpinBtn i{
  padding: 10px;
  color: rgba(0, 0, 0, 0.822);
  font-size: 1.5rem;
  cursor: pointer;
}
#stopSpinBtn:hover{
  background: rgb(209,17,17);
  background: linear-gradient(288deg, rgba(216, 9, 9, 0.842) 0%, rgba(162,239,255,0.47102591036414565) 100%);
}
.result {
  margin-top: 10px;
  font-size: 1.4rem;
}

.balance {
  margin-top: 10px;
  font-size: 1.2rem;
  color: green;
}

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