/* Drift progression + survivor menu hotspot */

.survivor-menu-hotspot {
  position: absolute;
  z-index: 40;
  left: 48px;
  bottom: 42px;
  width: 62px;
  height: 118px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.survivor-menu-hotspot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 20px;
  border: 1px dashed transparent;
}

@media (hover: hover) and (pointer: fine) {
  .survivor-menu-hotspot:hover::after {
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.06);
  }
}

.survivor-menu-hotspot:focus-visible::after {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (pointer: coarse) {
  .survivor-menu-hotspot {
    left: 40px;
    bottom: 36px;
    width: 78px;
    height: 132px;
    border-radius: 28px;
  }
}
