#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cdn-animation-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1px;
  height: 100px;
  z-index: 0;
}

#cdn-animation-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: 2px 0;
  width: 100%;
  z-index: 0;
  background: transparent;
}

.cdn-icon-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.cdn-icon-wrapper:hover {
  transform: none;
  box-shadow: none;
}

.cdn-icon-wrapper img {
  width: 55px;
  height: 55px;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.cdn-icon-wrapper:hover img {
  transform: scale(1.1);
}

.icon-hover-text {
  font-size: 14px;
  color: #666;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.cdn-icon-wrapper:hover .icon-hover-text {
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 0.3s ease-out;
}

@media (max-width: 768px) {
  .cdn-animation-container {
    flex-direction: column;
    gap: 15px;
    height: auto;
    min-height: 250px;
  }
  
  .cdn-icon-wrapper img {
    width: 45px;
    height: 45px;
  }
  
  .icon-hover-text {
    font-size: 12px;
  }

  #cdn-animation-section {
    min-height: 200px;
  }
}