
@import url('https://ueeshop-static.ly200-cdn.com/static/font/HarmoniaSansStd-Regular/font.css?v=6.04901754899827');

/* ===== Enershare Global Map — 1920px Centered ===== */
.es-global-1920 {
  font-family: 'HarmoniaSansStd-Regular', 'Helvetica Neue', Arial, sans-serif;
  width: 1920px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 60px 0;
  color: #333;
  box-sizing: border-box;
  background: #f8faf9;
}

/* Header */
.es-g-header {
  text-align: center;
  margin-bottom: 32px;
}
.es-g-header .label {
  font-size: 14px;
  font-weight: 600;
  color: #23ac38;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.es-g-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #333;
  line-height: 1.3;
}
.es-g-header h2 span { color: #23ac38; }
.es-g-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Stats Bar */
.es-g-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 24px 0 36px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e0f0e3;
}
.es-g-stat {
  text-align: center;
}
.es-g-stat .num {
  font-size: 40px;
  font-weight: 700;
  color: #23ac38;
  line-height: 1;
  margin-bottom: 8px;
}
.es-g-stat .txt {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Map Stage */
.es-g-stage {
  position: relative;
  width: 1920px;
  height: 620px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e0f0e3;
  background: #f8faf9;
  margin: 0 auto;
}

/* Background Map Image — 10% opacity */
.es-g-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 620px;
  object-fit: contain;
  object-position: center;
  opacity: 0.1;
  pointer-events: none;
  border-radius: 16px;
}

/* SVG Overlay */
.es-g-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 620px;
  pointer-events: none;
  z-index: 2;
}

/* Connection Lines */
.es-g-line {
  fill: none;
  stroke: #23ac38;
  stroke-linecap: round;
  opacity: 0.55;
  stroke-dasharray: 10 8;
  animation: es-g-flow 1.4s linear infinite;
  mask: url(#es-fade-mask);
  clip-path: url(#es-boundary-clip);
}
.es-g-line-glow {
  fill: none;
  stroke: #23ac38;
  stroke-linecap: round;
  opacity: 0.1;
  filter: blur(3px);
  mask: url(#es-fade-mask);
  clip-path: url(#es-boundary-clip);
}
@keyframes es-g-flow {
  to { stroke-dashoffset: -36; }
}

/* Moving Packets */
.es-g-packet {
  fill: #23ac38;
  filter: drop-shadow(0 0 4px rgba(35,172,56,0.7));
  clip-path: url(#es-boundary-clip);
}

/* Hub Pulse */
.es-g-pulse {
  fill: #23ac38;
  opacity: 0.25;
  animation: es-g-pulse 2.5s ease-out infinite;
}
.es-g-core {
  fill: #fff;
  stroke: #23ac38;
  stroke-width: 2.5;
}
@keyframes es-g-pulse {
  0% { r: 6; opacity: 0.5; }
  100% { r: 26; opacity: 0; }
}

/* Region Zones */
.es-g-zone {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

/* Zone Label */
.es-g-zone-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 6px rgba(255,255,255,0.95);
  pointer-events: none;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Active State */
.es-g-zone.active {
  background: rgba(35,172,56,0.06);
  border-color: rgba(35,172,56,0.25);
  box-shadow: inset 0 0 24px rgba(35,172,56,0.08);
}
.es-g-zone.active .es-g-zone-label {
  color: #1a8a2c;
}

/* Tooltip */
.es-g-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  min-width: 130px;
  max-width: 180px;
  background: #fff;
  border-radius: 8px;
  padding: 11px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  border-top: 2px solid #23ac38;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
  z-index: 200;
}

/* Tooltip Arrow */
.es-g-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #fff;
}

.es-g-zone.active .es-g-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Tooltip Text */
.es-g-tip-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
  text-align: center;
  line-height: 1.2;
}
.es-g-tip-num {
  font-size: 24px;
  font-weight: 700;
  color: #23ac38;
  text-align: center;
  line-height: 1;
  margin-bottom: 3px;
}
.es-g-tip-unit {
  font-size: 13px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}
.es-g-tip.wide {
  min-width: 170px;
}
