/* Tear containers aligned to eye centers */
.tears {
  position: absolute;
  top: calc(12% + 50px + 84px);
  /* below button */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Center under left eye */
.tears.left {
  left: calc(10vw + 90px);
  /* matches left eye center */
  transform: translateX(-50%);
}

/* Center under right eye */
.tears.right {
  right: calc(10vw + 90px);
  /* matches right eye center */
  transform: translateX(50%);
}

/* Tear drop shape */
/* Square markers */

.tear {
  width: 29px;
  height: 29px;
  background: #000;
  border: none;
  opacity: 0.4;
  animation: tearGlow 3.2s ease-in-out infinite;
}

.tears .tear:nth-child(1) {
  animation-delay: 0s;
}

.tears .tear:nth-child(2) {
  animation-delay: 0.6s;
}

.tears .tear:nth-child(3) {
  animation-delay: 1.2s;
}

.tears .tear:nth-child(4) {
  animation-delay: 1.8s;
}


/* Glow animation for tears */
@keyframes tearGlow {
  0% {
    opacity: 0.4;
    box-shadow: none;
  }

  30% {
    opacity: 0.9;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  }

  60% {
    opacity: 0.4;
    box-shadow: none;
  }

  100% {
    opacity: 0.4;
    box-shadow: none;
  }
}