:root {
  color-scheme: dark;
  --purple: #9f49ad;
  --mint: #86f6d8;
  --focus: #86f6d8;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  justify-items: center;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
}

.page {
  position: relative;
  width: min(100%, 810px);
  background: #000;
}

.layout {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.top-video {
  position: absolute;
  left: 9.6%;
  top: 0.7%;
  z-index: 1;
  display: block;
  width: 80.4%;
  height: 25%;
  background: #000;
  object-fit: cover;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 6px;
}

.hotspot:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.usdt {
  left: 37.5%;
  top: 52.7%;
  width: 24%;
  height: 4.4%;
}

.telegram {
  left: 37.4%;
  top: 65.4%;
  width: 24.1%;
  height: 4.4%;
}

.verified {
  left: 21%;
  top: 81.9%;
  width: 68%;
  height: 5.2%;
}

.back {
  left: 36.2%;
  top: 87.6%;
  width: 26.6%;
  height: 4%;
}

.compact-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(100%, 810px);
  margin: 0 auto;
  padding: 36px 20px;
  background: #000;
}

.copy-panel {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(30px, 6vw, 56px) clamp(20px, 5vw, 48px);
  background: #000;
  text-align: center;
}

.copy-panel h1,
.copy-button,
.return-button {
  text-transform: uppercase;
  text-shadow:
    3px 0 #000,
    -3px 0 #000,
    0 3px #000,
    0 -3px #000,
    2px 2px #000;
}

.copy-panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 10vw, 5.6rem);
  line-height: 0.92;
}

.wallet-label {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  text-transform: uppercase;
}

.wallet-code {
  width: 100%;
  margin: 0;
  padding: 20px;
  color: #fff;
  background: #111;
  border: 4px solid var(--purple);
  overflow-wrap: anywhere;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1rem, 3.8vw, 1.8rem);
  line-height: 1.35;
}

.copy-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.copy-button,
.return-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border: 0;
  color: #fff;
  background: var(--purple);
  font: inherit;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.return-button {
  background: var(--mint);
  color: #000;
  text-shadow:
    3px 0 #fff,
    -3px 0 #fff,
    0 3px #fff,
    0 -3px #fff,
    2px 2px #fff,
    -2px -2px #fff,
    2px -2px #fff,
    -2px 2px #fff;
}

.copy-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--mint);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  text-transform: uppercase;
}

@media (min-width: 811px) {
  body {
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  .copy-actions {
    grid-template-columns: 1fr;
  }
}
