.town-map {
  background-image: url("assets/dream-town/main-town-night-mailbox-v2.png");
}

.town-map::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: url("assets/dream-town/main-town-day-small-coin-v1.png") center / cover no-repeat;
  content: "";
  opacity: 0;
  transition: opacity 1.2s ease;
}

.town-map.is-daytime::before {
  opacity: 1;
}

.town-map.is-daytime::after {
  background: linear-gradient(#214a6d30, transparent 20%, transparent 80%, #10183640);
}

#app[data-reduce-motion="true"] .town-map::before {
  transition: none;
}

.town-map .mailbox-trigger::before {
  content: none !important;
}
