html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.game-station {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #000 url("assets/generic-bg.png") center/cover no-repeat;
  color: var(--ink);
}

.game-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.game-title {
  font-size: clamp(22px, 3vw, 44px);
  text-align: center;
}

.game-subtitle {
  font-size: clamp(12px, 1.4vw, 20px);
  color: var(--muted);
}

.game-footer {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 3%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 1;
}

.game-footer .footer-left {
  font-size: clamp(12px, 1.6vw, 22px);
  justify-self: start;
}

.game-footer .footer-center {
  font-size: clamp(20px, 2.6vw, 40px);
  text-align: center;
}

.game-footer .footer-right {
  font-size: clamp(12px, 1.8vw, 24px);
  justify-self: end;
}
