.ui-game {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 810px;
  margin-top: 0;
  font-weight: 500;
  color: white;
  pointer-events: none;
  opacity: 0;
}

.ui-game--show {
  opacity: 1;
  transition: opacity 0.3s;
}

.ui-game__logo {
  display: block;
  width: 120px;
  margin: auto;
}

.ui-game__group {
  display: flex;
}

.ui-game__label {
  display: flex;
  align-items: center;
  height: 18px;
  padding: 0;
  font-size: 10px;
  font-weight: 500;
  color: white;
  background: none;
  border: none;
}

.ui-game__label--score {
  position: absolute;
  top: 27px;
  left: 200px;
}

.ui-game__label--level {
  position: absolute;
  top: 27px;
  left: calc(100vw - 210px);
}

.ui-game__label--level-start {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 45px;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
}

.ui-game__label--level-start-show {
  opacity: 1;
}

.ui-game__label--lives {
  position: absolute;
  top: 27px;
  left: calc(100vw - 130px);
}

.ui-game__value {
  margin-left: 10px;
  color: #FFB81C;
}

.ui-game__value img { 
  width: 16px;
  margin-right: 8px;
}

@media screen and (min-width: 927px) {
  .ui-game__label {
    height: 24px;
    font-size: 16px;
  }

  .ui-game__value {
    margin-left: 16px;
  }
  
  .ui-game__label--score {
    top: 70px;
    left: 320px;
  }
  
  .ui-game__label--level {
    top: 70px;
    left: calc(100vw - 360px);
  }
  
  .ui-game__label--lives {
    top: 70px;
    left: calc(100vw - 200px);
  }

  .ui-game__value img {
    width: 25px;
    margin-right: 10px; 
  }

  .ui-game__label--level-start {
    font-size: 60px;
  }
}

@media screen and (min-width: 1440px) {
  .ui-game__label--level {
    left: calc(1440px - 360px);
  }
  
  .ui-game__label--lives {
    left: calc(1440px - 230px);
  }
}

@media screen and (min-width: 1920px) {
  .ui-game {
    max-height: none;
  }
}