#security-particles,
.security-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.particle-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0c4a6e;
}

@keyframes floatXY {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(2px, -3px); }
  50%  { transform: translate(0, 2px); }
  75%  { transform: translate(-2px, -1px); }
  100% { transform: translate(0, 0); }
}

.particle-label:contains('México'),
.particle-label:contains('USA') {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .particle-label {
    display: none !important;
  }
}
