.game--arena-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game--arena {
  height: 700px;
  max-height: 80vh;
  width: 60%;
}

.game--rope-and-players {
  position: relative;
  width: 100%;
  height: 100%;
}

.game--rope-class {
  position: absolute;
  top: 43%;
  left: 25%;
  width: 50%;
  height: 15%;
}

.game--target-marks {
  position: absolute;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  width: 200px;
  height: 200px;
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.game--derek-class {
  position: absolute;
  top: 25%;
  left: 75%;
  width: 25%;
  height: 50%;
  background-image: url("/assets/derek_bramble_563f0e22e7864a9c356caba7a1b07260.png");
  background-position: 0px 0px;
  background-size: 400% 200%;
}

.game--marta-class {
  position: absolute;
  top: 23%;
  left: 0;
  width: 25%;
  height: 50%;
  background-image: url("/assets/marta_muddleton_addb4bcaae061511272c260fd320ea41.png");
  background-position: 0px 0px;
  background-size: 400% 200%;
}

.game--result-label {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0.22em 0.7em;
  border-radius: 999px;
  color: #1f2933;
  background-color: rgb(255, 255, 255, 85%);
  box-shadow: 0px 8px 18px rgb(31, 41, 51, 22%);
  font-family: "Segoe UI", "Helvetica Neue", "Arial", sans-serif;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.game--pull-trigger {
  height: 400px;
  max-height: 50vh;
  width: 300px;
}

.game--next-game-countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-350px - 1.25rem));
  z-index: 3;
  margin: 0;
  padding: 0.25em 0.75em;
  border-radius: 999px;
  color: #1f2933;
  background-color: rgb(255, 255, 255, 85%);
  box-shadow: 0px 8px 18px rgb(31, 41, 51, 22%);
  font-family: "Segoe UI", "Helvetica Neue", "Arial", sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-height: 875px) {
  .game--next-game-countdown {
    transform: translate(-50%, calc((0px - 40vh) - 1.25rem));
  }
}