.cups {
  position: relative;
  height: 150px;
  margin-top: 20px;
}

.cup {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 110px;
  transform: translate(60%, -50%);
  transition: left 0.6s ease;
}


.cup img {
  width: 100%;
  pointer-events: none;
  z-index: 2;
  position: relative;
}

.cup.lift img {
  transform: translateY(-40px);
}

.cups.gather .cup {
  transition: left 0.4s ease;
}

.ball {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
  opacity: 0;
  z-index: 1;
}

.cup.show-ball .ball {
  opacity: 1;
}

.wooden-board{
    width: 90%;
    margin-top: -16%;
}

.info {
  font-size: 13px;
  opacity: 0.8;
}

#shuffleBtn {
  margin: 20px 0;
  color: var(--gold);
  background-color: #aa880059;
  border: none;
  padding: 7px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  display: flex;
  justify-self: center;

  img{
    height: 15px;
  }
}

.spots {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  padding: 20px;
}

.spot-btn {
  flex: 1;
  padding: 20px;
  background: transparent;
  border: 2px solid #ff914d;
  color: #ff914d;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
}

.spot-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 5px rgba(253, 208, 172, 0.848);

}
.footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  width: 100%;
  bottom: 0;  
  
  .place {
    width: 100%;
    background: rgb(2, 77, 2);
    color: white;
    padding: 20px;
    font-size: 16px;
    border: none;
  }

  div{
    margin-top: 10px;
    font-weight: bold;
    font-size: 13px;
    opacity: 0.8;
  }
}