.ia-preload-loader {
    position: relative;
    width: 200px;
    height: 200px;
  }
  
  .ia-preload-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    animation: ia-preload-pulse 1.5s infinite ease-in-out;
    transform: scale(1);
  }
  
  .ia-preload-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top left, #38bdf8, transparent);
    top: 0;
    left: 0;
    animation-delay: 0s;
  }
  
  .ia-preload-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom right, #8b5cf6, transparent);
    bottom: 0;
    right: 0;
    animation-delay: 0.3s;
  }
  
  .ia-preload-circle:nth-child(3) {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at center, #06b6d4, transparent);
    top: 25%;
    left: 25%;
    animation-delay: 0.6s;
  }
  
  .ia-preload-circle:nth-child(4) {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, #60a5fa, transparent);
    top: 10%;
    right: 10%;
    animation-delay: 0.9s;
  }
  
  .ia-preload-circle:nth-child(5) {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at bottom left, #f472b6, transparent);
    bottom: 10%;
    left: 10%;
    animation-delay: 1.2s;
  }
  
  @keyframes ia-preload-pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.4);
      opacity: 1;
    }
  }