/* Color Palette */
:root {
  --primary-orange: #ff8531;
  --dark-grey: #333333;
  --silver: #c0c0c0;
  --light-grey: #666666;
  --win-green: #00ff00;
}

.slots {
  margin: 20px;
  position: relative;
  width: calc(3.5 * 79px);
  height: calc(3 * 79px);
  display: flex;
  justify-content: space-between;
  padding: calc(0.3 * 79px);
  background: linear-gradient(to bottom right, #bd3396, #3e173f, #2b192f);
  border-top: 0px solid rgba(0, 0, 0, 0.6);
  border-right: 0px solid rgba(0, 0, 0, 0.6);
  border-left: 0px solid rgba(0, 0, 0, 0.4);
  border-bottom: 0px solid rgba(0, 0, 0, 0.4);
  box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

@keyframes win-highlight {
  0% {
    box-shadow: 0 0 10px var(--primary-orange);
  }
  100% {
    box-shadow: 0 0 40px var(--primary-orange);
  }
}

.slots.win {
  animation: win-highlight 500ms infinite alternate;
}

.reel {
  position: relative;
  width: 79px;
  height: calc(3 * 79px);
  border: 5px solid #ffffff;
  border-radius: 3px;
  overflow: hidden;
  /* background-image: url(../images/premios.jpeg); */
  background-image: url(../images/premio.jpg);
  background-position: 0 0;
  background-repeat: repeat-y;
}

.boton {
  position: absolute;
  bottom: 9em;
  padding: 1.5em 2.5em;
  border: black;
  background: var(--primary-orange);
  color: white;
  border-radius: 6px;
}

.indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(3 * 90px);
  height: 79px;
  border: 3px solid #21ef27;
  box-shadow: 0 0 5px #21ef27;
  pointer-events: none;
}
