.game-controls-top-wrapper {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
}

.game-controls-img {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

@media screen and (orientation: landscape) {
  .game-controls-top-wrapper {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: center;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .game-controls-center-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 50px;
  }

  .game-controls-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    gap: 4px;
  }

  .game-controls-right-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 15px;
  }

  .game-controls-right-top {
    display: flex;
    align-items: center;
  }

  .game-controls-right-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .game-controls-bottom-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0px;
  }

  .game-controls-img {
    width: 40px;
    height: 40px;
    opacity: 0.4;
  }

  .game-controls-space-img {
    width: 500px;
    height: 30px;
    opacity: 0.4;
  }

  .game-controls-img:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: transform 0.5s ease-in-out;
    filter: brightness(150%);
  }
}
