/* Add-ons Glowing Circles - Similar to logo style */

/* Target the add-ons section images */
#addons .float-element {
  position: relative;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
  padding: 2px;
  box-shadow: 
    0 0 20px rgba(59, 130, 246, 0.4),
    0 0 40px rgba(139, 92, 246, 0.3),
    0 0 60px rgba(236, 72, 153, 0.2);
  transition: all 0.3s ease;
}

#addons .float-element:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 25px rgba(59, 130, 246, 0.5),
    0 0 50px rgba(139, 92, 246, 0.4),
    0 0 75px rgba(236, 72, 153, 0.3);
}

#addons .float-element::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

#addons .float-element > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

#addons .float-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Glow animation */
@keyframes glowPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #addons .float-element {
    width: 56px !important;
    height: 56px !important;
  }
  
  #addons .float-element > div {
    padding: 6px;
  }
}

@media (max-width: 480px) {
  #addons .float-element {
    width: 48px !important;
    height: 48px !important;
  }
  
  #addons .float-element > div {
    padding: 4px;
  }
} 