/* wasteland.css — page-specific art only */
/* Shared structural styles live in server-page.css */

/* ── Top corner Vault Boys ───────────────────────────────────────── */
.vault-boy-right {
  position: absolute;
  top: 15px;
  right: 45px;
  width: 180px;
  height: auto;
  pointer-events: none;
}
.vault-boy-left {
  position: absolute;
  top: 45px;
  left: 120px;
  width: 200px;
  height: auto;
  pointer-events: none;
}

/* ── Bottom corner zombies (reused from 7dtd assets) ────────────── */
.woman-img {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 320px;
  height: auto;
  pointer-events: none;
}
.man-img {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 320px;
  height: auto;
  pointer-events: none;
}

@media (max-width: 768px) {
  .vault-boy-right,
  .vault-boy-left,
  .woman-img,
  .man-img { display: none; }
}

