.glowing-icons .tn-atom {
  position: relative;
  display: inline-block;
  animation: glowPulse 3s ease-in-out infinite;
}

.glowing-icons .tn-atom::after {
  content: '✨';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  filter: blur(4px);
  color: #ffffa0;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
