/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 20 2025 | 18:47:50 */
/* ¡IMPORTANTE! Eliminamos cualquier estilo para el body. */

/* El Contenedor de Origen (donde "soldamos") */
.contenedor-chispa {
  height: 1px;
  background-color: #fff;
  position: relative; /* ¡ESENCIAL! Las chispas se posicionan respecto a este punto */
  z-index: 10;
  /* Si deseas moverlo manualmente SIN tocar el body, puedes usar un margen superior */
  /* margin-top: 200px; */
  margin-top:-3px;
}

/* Estilo para cada chispa individual creada por JS */
.chispa {
  position: absolute;
  background-color: #ffeb3b; 
  border-radius: 50%;
  box-shadow: 0 0 3px #ffeb3b, 0 0 8px #ff9800; 
  opacity: 1;
  pointer-events: none; 
  z-index: 9; 
}