body > .arcade-back-link {
  position: fixed;
  top: max(68px, calc(env(safe-area-inset-top) + 14px));
  left: max(14px, calc(env(safe-area-inset-left) + 14px));
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(37, 231, 255, .42);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(37, 231, 255, .18), rgba(255, 67, 209, .16)),
    rgba(4, 7, 20, .76);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, .32),
    0 0 26px rgba(37, 231, 255, .22),
    inset 0 0 22px rgba(255, 255, 255, .045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  pointer-events: auto;
  transform: translateZ(0);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

body > .arcade-back-link::before {
  content: "<";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #06101f;
  background: linear-gradient(120deg, #25e7ff, #ffffff, #ff43d1);
  box-shadow: 0 0 18px rgba(37, 231, 255, .34);
}

body > .arcade-back-link:hover,
body > .arcade-back-link:focus-visible {
  transform: translateY(-2px) translateZ(0);
  border-color: rgba(255, 230, 109, .72);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .38),
    0 0 34px rgba(255, 67, 209, .28),
    0 0 30px rgba(37, 231, 255, .26),
    inset 0 0 24px rgba(255, 255, 255, .06);
  outline: none;
}

body > .arcade-back-link:active {
  transform: translateY(0) scale(.98) translateZ(0);
}

@media (max-width: 720px) {
  body > .arcade-back-link {
    top: max(58px, calc(env(safe-area-inset-top) + 10px));
    left: max(10px, calc(env(safe-area-inset-left) + 10px));
    min-height: 38px;
    padding: 8px 11px;
    font-size: 12px;
  }

  body > .arcade-back-link::before {
    width: 20px;
    height: 20px;
  }
}
