/* ── REALISTIC GLOBE CANVAS ── */
#globeCanvas {
  position: fixed;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 750px;
  height: 750px;
  pointer-events: none;
  z-index: 1;
  display: block;
  background: transparent;
}

@media (max-width: 900px) {
  #globeCanvas {
    width: 380px;
    height: 380px;
    right: -15%;
    opacity: 0.35;
  }
}
