/* Hub — painted Hamtonia map with clickable district hotspots.
   Scoped under .hh-root to prevent collision with legacy dojo selectors. */

.hh-root .hh-hub {
  position: relative;
  width: 100%;
  height: 100%;
}

.hh-root .hh-hub-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hotspot buttons — invisible by default, gold dashed border on hover */
.hh-root .hh-hub-hotspot {
  position: absolute;
  background: transparent;
  border: 2px dashed rgba(255, 209, 102, 0);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hh-root .hh-hub-hotspot:hover {
  border-color: rgba(255, 209, 102, 0.6);
  background: rgba(255, 209, 102, 0.06);
}

.hh-root .hh-hub-hotspot:focus-visible {
  outline: 2px solid var(--color-gold, #ffd166);
  outline-offset: 2px;
}

/* Meadow Haven hotspot — brighter glow, signals it's the finale */
.hh-root .hh-hub-hotspot--meadow:hover {
  border-color: rgba(255, 209, 102, 1);
  background: rgba(255, 209, 102, 0.12);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
}
