.baixiu_global_distribution {
  padding-top: var(--gap-80);
  background: #0137B5 0%;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.baixiu_global_distribution .container {
  overflow: visible;
}

.bgd-title {
  text-align: center;
}

.bgd-scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
}

.bgd-scroll-container::-webkit-scrollbar {
  display: none;
}

.bgd-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 391/252;
  min-width: calc(56rem * 391 / 252);
  min-height: 56rem;
}

.bgd-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.bgd-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bgd-line-group {
  opacity: 0;
}

.baixiu_global_distribution.is-visible .bgd-line-group {
  opacity: 1;
  animation: fadeInLine 0.8s ease-out both;
  animation-delay: var(--line-delay, 0s);
}

@keyframes fadeInLine {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bgd-line-thin {
  fill: none;
  stroke-width: 0.18;
}

.bgd-line-thick {
  fill: none;
  stroke-width: 0.4;
  opacity: 0.8;
}

.bgd-line-flow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 0.25;
  stroke-dasharray: 0 100;
  animation: none;
}

.baixiu_global_distribution.is-visible .bgd-line-flow {
  animation: flowFromCenter 2.5s ease-in-out infinite;
}

@keyframes flowFromCenter {
  0% {
    stroke-dasharray: 0 100;
    opacity: 1;
  }

  50% {
    stroke-dasharray: 50 50;
    opacity: 0.8;
  }

  100% {
    stroke-dasharray: 100 0;
    opacity: 0.3;
  }
}

.bgd-center {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.bgd-center-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: none;
}

.baixiu_global_distribution.is-visible .bgd-center-ripple {
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    width: 3rem;
    height: 3rem;
    opacity: 1;
  }

  100% {
    width: 8rem;
    height: 8rem;
    opacity: 0;
  }
}

.bgd-center-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.bgd-center-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.bgd-point {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}

.baixiu_global_distribution.is-visible .bgd-point {
  opacity: 1;
  animation: fadeInPoint 0.6s ease-out both;
  animation-delay: var(--point-delay, 0s);
}

@keyframes fadeInPoint {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.bgd-point-dot {
  width: 1.3125rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: none;
}

.baixiu_global_distribution.is-visible .bgd-point-dot {
  animation: pulse 2s ease-in-out infinite;
}

.bgd-point-dot svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 0.5rem rgba(253, 117, 42, 0.6));
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.bgd-point-label {
  position: absolute;
  left: calc(100% + 0.3rem);
  top: 50%;
  transform: translateY(-50%);
  text-wrap: nowrap;
  text-transform: uppercase;
}

.bgd-point.label-left .bgd-point-label {
  left: auto;
  right: calc(100% + 0.3rem);
}

/* ── Responsive ── */
@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
  .bgd-point-label {
    font-size: var(--font-14);
  }
}

@media screen and (max-width: 576px) {
  .bgd-center-icon {
    width: 2rem;
    height: 2rem;
  }

  .bgd-center-ripple {
    width: 2rem;
    height: 2rem;
  }

  @keyframes ripple {
    0% {
      width: 2rem;
      height: 2rem;
      opacity: 1;
    }

    100% {
      width: 6rem;
      height: 6rem;
      opacity: 0;
    }
  }

  .bgd-point-dot {
    width: 1rem;
    height: 1rem;
  }

  .bgd-point-label {
    font-size: 0.625rem;
  }
}