/* ═══════════════════════════════════════════
   GLOBE
═══════════════════════════════════════════ */
.globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.globe {
  position: relative;
  width: 480px; height: 480px;
  max-width: 92vw;
  max-height: 92vw;
  animation: globeFloat 6s ease-in-out infinite;
}
@keyframes globeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.globe-svg {
  width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 22px 50px rgba(0, 60, 160, 0.40));
}

/* Atmospheric glow ring */
.globe-glow {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(0,170,238,0.10) 0%,
    rgba(10,82,204,0.06) 50%,
    transparent 80%);
  filter: blur(24px);
  z-index: -1;
  animation: ledPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 560px) {
  .globe { width: 360px; height: 360px; }
}
