:root {
  color-scheme: dark;
  --gold: #d8aa74;
  --text: #d8aa74;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #030303;
}

button,
input,
select,
textarea {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  outline: 0 !important;
}

.screen {
  position: fixed;
  inset: 0;
  display: none;
  overflow: hidden;
  --stage-w: min(100vw, calc(100vh * 0.5627990431));
  --stage-h: min(100vh, calc(100vw * 1.7768331562));
  --stage-left: calc((100vw - var(--stage-w)) / 2);
  --stage-top: calc((100vh - var(--stage-h)) / 2);
  background: #030303 var(--bg) center / contain no-repeat;
}

.screen.is-active {
  display: block;
}

.hit,
.cover-slot {
  position: absolute;
  z-index: 3;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  user-select: none;
}

.hit:focus,
.hit:focus-visible,
.hit:active,
.cover-slot:focus-within {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.choice-hit.selected::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 82%;
  height: 70%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(50, 255, 114, 0.74), rgba(50, 255, 114, 0.34) 42%, rgba(50, 255, 114, 0.14) 66%, transparent 86%);
  filter: blur(10px);
  box-shadow: none;
  pointer-events: none;
}

.straight-hit.selected::after {
  left: 57%;
}

.bi-hit.selected::after {
  left: 43%;
}

.consent-box input:checked + span::after,
.self-video-hit.done::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: #32ff72;
  font: 800 clamp(18px, 2.7vh, 36px) system-ui, sans-serif;
  text-shadow: 0 0 8px rgba(50, 255, 114, 0.95), 0 0 18px rgba(50, 255, 114, 0.7);
  pointer-events: none;
}

.slot-text,
.identity-line input,
.identity-preview {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: 0;
  box-shadow: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 0 4px rgba(15, 6, 0, 0.9), 0 0 10px rgba(216, 170, 116, 0.28);
  caret-color: var(--gold);
}

.slot-text::placeholder,
.identity-line input::placeholder {
  color: var(--text);
  opacity: 0.95;
}

.hidden-input,
.cover-slot input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.cover-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-slot.has-image {
  overflow: hidden;
}

/* Entrance */
.guys-hit {
  left: 6.8%;
  top: 66.4%;
  width: 38%;
  height: 8.8%;
}

.girls-hit {
  left: 51.5%;
  top: 66.4%;
  width: 41%;
  height: 8.8%;
}

/* Filters */
.straight-hit {
  left: 8.5%;
  top: 29.6%;
  width: 24%;
  height: 10.6%;
}

.gay-hit {
  left: 37.6%;
  top: 29.6%;
  width: 24.8%;
  height: 10.6%;
}

.bi-hit {
  left: 67%;
  top: 29.6%;
  width: 24%;
  height: 10.6%;
}

.custom-tags-slot {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.245));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.525));
  width: calc(var(--stage-w) * 0.51);
  height: calc(var(--stage-h) * 0.27);
  resize: none;
  overflow: hidden;
  font-size: clamp(18px, 2.15vh, 30px);
  line-height: 1.45;
  text-transform: none;
  text-align: center;
}

.custom-tags-slot::-webkit-resizer {
  display: none;
}

.filter-next {
  left: 23%;
  top: 88%;
  width: 54%;
  height: 7.2%;
}

/* Consent */
.consent-box {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.674));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.216));
  width: calc(var(--stage-w) * 0.041);
  height: calc(var(--stage-h) * 0.024);
}

.consent-box span {
  position: absolute;
  inset: 0;
}

.self-video-hit {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.245));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.303));
  width: calc(var(--stage-w) * 0.51);
  height: calc(var(--stage-h) * 0.062);
}

.self-video-hit.done::after {
  display: none;
}

.self-video-preview {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.128));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.415));
  width: calc(var(--stage-w) * 0.744);
  height: calc(var(--stage-h) * 0.515);
  display: none;
  object-fit: cover;
  border: 0;
  background: transparent;
  box-shadow: none;
  z-index: 2;
  pointer-events: none;
}

.self-video-preview.ready {
  display: block;
}

.consent-next {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.2));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.91));
  width: calc(var(--stage-w) * 0.6);
  height: calc(var(--stage-h) * 0.07);
}

/* Account */
.phone-slot,
.login-password-slot,
.create-password-slot,
.identity-slot {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.183));
  width: calc(var(--stage-w) * 0.634);
  height: calc(var(--stage-h) * 0.064);
  font-size: clamp(17px, 2.05vh, 30px);
  line-height: calc(var(--stage-h) * 0.064);
  text-align: center;
}

.phone-slot {
  top: calc(var(--stage-top) + (var(--stage-h) * 0.205));
}

.login-password-slot {
  top: calc(var(--stage-top) + (var(--stage-h) * 0.386));
}

.identity-slot {
  top: calc(var(--stage-top) + (var(--stage-h) * 0.565));
}

.identity-line input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  text-transform: none;
  text-align: center;
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
  color: transparent;
  text-shadow: none;
  caret-color: transparent;
  z-index: 2;
}

.identity-preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-transform: none;
  white-space: nowrap;
  font-size: 0.86em;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  font-variant-ligatures: none;
}

.create-password-slot {
  top: calc(var(--stage-top) + (var(--stage-h) * 0.746));
}

.account-next {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.35));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.897));
  width: calc(var(--stage-w) * 0.3);
  height: calc(var(--stage-h) * 0.058);
}

.loose-status {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.14));
  right: calc(var(--stage-left) + (var(--stage-w) * 0.14));
  bottom: calc(var(--stage-top) + (var(--stage-h) * 0.012));
  margin: 0;
  color: var(--gold);
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: 12px;
}

/* Sign in / sign up choice */
.signin-choice-hit {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.128));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.286));
  width: calc(var(--stage-w) * 0.744);
  height: calc(var(--stage-h) * 0.158);
}

.signup-choice-hit {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.128));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.585));
  width: calc(var(--stage-w) * 0.744);
  height: calc(var(--stage-h) * 0.158);
}

/* Sign in */
.signin-login-slot,
.signin-password-slot {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.13));
  width: calc(var(--stage-w) * 0.74);
  height: calc(var(--stage-h) * 0.142);
  line-height: calc(var(--stage-h) * 0.142);
  text-align: center;
  font-size: clamp(20px, 2.55vh, 40px);
  text-transform: none;
}

.signin-login-slot {
  top: calc(var(--stage-top) + (var(--stage-h) * 0.276));
}

.signin-password-slot {
  top: calc(var(--stage-top) + (var(--stage-h) * 0.55));
}

.forgot-password-hit {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.25));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.718));
  width: calc(var(--stage-w) * 0.5);
  height: calc(var(--stage-h) * 0.065);
}

.signin-enter-hit {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.235));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.815));
  width: calc(var(--stage-w) * 0.53);
  height: calc(var(--stage-h) * 0.079);
}

.signin-status {
  bottom: calc(var(--stage-top) + (var(--stage-h) * 0.04));
}

/* Dashboard */
.dash-myself {
  left: 38%;
  top: 45.8%;
  width: 25%;
  height: 12.2%;
}

.dash-travels {
  left: 36%;
  top: 15%;
  width: 28%;
  height: 16%;
}

.dash-description {
  left: 3.5%;
  top: 32.8%;
  width: 27.5%;
  height: 16%;
}

.dash-blackbook {
  left: 68.5%;
  top: 32.8%;
  width: 27.5%;
  height: 16%;
}

.dash-club {
  left: 3.5%;
  top: 60%;
  width: 28.5%;
  height: 18%;
}

.dash-map {
  left: 68%;
  top: 60%;
  width: 28.5%;
  height: 18%;
}

.dash-desires {
  left: 36%;
  top: 74%;
  width: 29%;
  height: 17%;
}

.back-hit {
  left: 5%;
  top: 4%;
  width: 26%;
  height: 7%;
}

/* Myself cover receivers */
.profile-main {
  left: 38%;
  top: 45.8%;
  width: 25%;
  height: 12.2%;
}

.profile-top {
  left: 36%;
  top: 15%;
  width: 28%;
  height: 16%;
}

.profile-left {
  left: 3.5%;
  top: 32.8%;
  width: 27.5%;
  height: 16%;
}

.profile-right {
  left: 68.5%;
  top: 32.8%;
  width: 27.5%;
  height: 16%;
}

.profile-bottom {
  left: 36%;
  top: 74%;
  width: 29%;
  height: 17%;
}

/* Description / club loose fields */
.description-bio {
  left: 15%;
  top: 50%;
  width: 70%;
  height: 37%;
  resize: none;
  font-size: clamp(18px, 2.2vh, 30px);
}

.profile-tags {
  position: absolute;
  left: 15%;
  top: 40%;
  width: 70%;
  min-height: 7%;
  color: #32ff72;
  font-size: clamp(16px, 2vh, 28px);
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0 8px rgba(50, 255, 114, 0.75);
}

.club-message {
  left: 15%;
  bottom: 8%;
  width: 70%;
  height: 6%;
  font-size: clamp(18px, 2.2vh, 30px);
}

/* Black Book cover receivers */
.bb-top {
  left: 33%;
  top: 16%;
  width: 34%;
  height: 9%;
}

.bb-center {
  left: 38%;
  top: 41%;
  width: 24%;
  height: 14%;
}

.bb-left-one {
  left: 12%;
  top: 31%;
  width: 23%;
  height: 13%;
}

.bb-right-one {
  left: 65%;
  top: 31%;
  width: 23%;
  height: 13%;
}

.bb-left-two {
  left: 13%;
  top: 56%;
  width: 22%;
  height: 13%;
}

.bb-right-two {
  left: 65%;
  top: 56%;
  width: 22%;
  height: 13%;
}

.bb-bottom {
  left: 34%;
  top: 78.5%;
  width: 32%;
  height: 11%;
}

/* Desire cover receivers */
.desire-back {
  left: 6%;
  top: 3.6%;
  width: 24%;
  height: 7%;
}

.desire-edit {
  left: 70%;
  top: 3.6%;
  width: 24%;
  height: 7%;
}

.desire-top {
  left: 42%;
  top: 3.8%;
  width: 16%;
  height: 15.5%;
}

.desire-center {
  left: 35%;
  top: 39.5%;
  width: 30%;
  height: 21%;
}

.desire-left-one {
  left: 5%;
  top: 38%;
  width: 23%;
  height: 22%;
}

.desire-right-one {
  left: 72%;
  top: 38%;
  width: 23%;
  height: 22%;
}

.desire-left-two {
  left: 14%;
  top: 66%;
  width: 23%;
  height: 22%;
}

.desire-right-two {
  left: 63%;
  top: 66%;
  width: 23%;
  height: 22%;
}

.desire-bottom {
  left: 38%;
  top: 79%;
  width: 24%;
  height: 19%;
}

/* Travels */
.travel-back-hit {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.02));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.02));
  width: calc(var(--stage-w) * 0.2);
  height: calc(var(--stage-h) * 0.08);
}

.travel-destination {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.17));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.205));
  width: calc(var(--stage-w) * 0.66);
  height: calc(var(--stage-h) * 0.05);
  line-height: calc(var(--stage-h) * 0.05);
  text-align: center;
  font-size: clamp(16px, 1.85vh, 28px);
}

.travel-arrival {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.17));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.288));
  width: calc(var(--stage-w) * 0.31);
  height: calc(var(--stage-h) * 0.05);
  line-height: calc(var(--stage-h) * 0.05);
  text-align: center;
  font-size: clamp(14px, 1.7vh, 24px);
}

.travel-departure {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.52));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.288));
  width: calc(var(--stage-w) * 0.31);
  height: calc(var(--stage-h) * 0.05);
  line-height: calc(var(--stage-h) * 0.05);
  text-align: center;
  font-size: clamp(14px, 1.7vh, 24px);
}

.travel-set {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.37));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.362));
  width: calc(var(--stage-w) * 0.26);
  height: calc(var(--stage-h) * 0.046);
}

.traveler-feed {
  position: fixed;
  left: calc(var(--stage-left) + (var(--stage-w) * 0.1));
  top: calc(var(--stage-top) + (var(--stage-h) * 0.69));
  width: calc(var(--stage-w) * 0.8);
  height: calc(var(--stage-h) * 0.21);
  overflow: hidden;
}

.map-load {
  left: 68%;
  top: 60%;
  width: 28.5%;
  height: 18%;
}

@media (max-aspect-ratio: 9 / 16) {
  .screen {
    background-size: cover;
  }
}
