.game-select {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  z-index: 10000000;
}

.game-select__btn {
  width: 171px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Luckiest;
  font-size: 32px;
  background-color: var(--card-color);
  border-radius: 15px;
  border: none;
  color: black;
  cursor: pointer;
  transition: background 0.3s;
}

.game-select__btn:hover {
  opacity: 0.9;
} 