.global-map-section.network-globe-section {
  position: relative;
  min-height: 940px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  scroll-margin-top: 64px;
}

.network-globe-stage {
  position: relative;
  min-height: 940px;
  width: 100%;
  display: grid;
  place-items: center;
  background: transparent;
}

.network-globe-stage::before,
.network-globe-stage::after {
  display: none;
}

.network-globe-heading {
  position: absolute;
  left: 50%;
  top: 78px;
  z-index: 12;
  width: min(760px, 92vw);
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.network-globe-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.66);
}

.network-globe-heading p {
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(204, 217, 232, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.network-globe-renderer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.network-globe-renderer canvas {
  display: block !important;
  width: 100%;
  height: 100%;
  background: transparent !important;
}

.network-globe-error .network-globe-renderer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(760px, 76vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 25%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 50% 50%, #161a20, #030407 76%);
}

.network-activity {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transform: translate(-50%, -50%);
  color: rgba(226, 237, 248, 0.48);
  font-size: 13px;
  white-space: nowrap;
}

.network-activity::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #13e28a;
  box-shadow: 0 0 16px rgba(19, 226, 138, 0.8);
}

.network-stats {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: min(960px, 90vw);
  transform: translate(-50%, -16%);
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(20px, 4vw, 58px);
  text-align: center;
  pointer-events: none;
}

.network-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(82, 183, 255, 0.28), 0 10px 34px rgba(0, 0, 0, 0.62);
}

.network-stat span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 14px;
}

@media (max-width: 900px) {
  .global-map-section.network-globe-section,
  .network-globe-stage {
    min-height: 780px;
  }
  .network-globe-heading {
    top: 74px;
  }
  .network-globe-heading p {
    font-size: 14px;
  }
  .network-stats {
    top: 54%;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    row-gap: 28px;
  }
  .network-stat strong {
    font-size: clamp(30px, 10vw, 42px);
  }
}

@media (max-width: 620px) {
  .global-map-section.network-globe-section,
  .network-globe-stage {
    min-height: 720px;
  }
  .network-globe-heading {
    top: 70px;
    width: min(340px, 92vw);
  }
  .network-globe-heading h2 {
    font-size: 22px;
  }
  .network-globe-heading p {
    font-size: 13px;
    line-height: 1.5;
  }
  .network-stats {
    width: min(360px, 92vw);
    gap: 24px 18px;
  }
  .network-stat span {
    margin-top: 8px;
  }
}
