.uc-my-slider-bg {
  background-image: url('https://static.tildacdn.com/tild6636-6464-4163-b139-383833363732/Group_40240_2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uc-my-slider-bg2 {
  background-image: url('https://static.tildacdn.com/tild6537-6435-4764-b565-376264643061/Group_40295_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.block-with-shadow-glow {
  border-radius: 20px;
  animation: shadow-pulse 3s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 255, 136, 0.4),
      0 0 40px rgba(0, 102, 255, 0.2),
      0 0 60px rgba(0, 255, 136, 0.1);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 255, 136, 0.6),
      0 0 60px rgba(0, 102, 255, 0.4),
      0 0 90px rgba(0, 255, 136, 0.2);
  }
}

/* Для мобильных устройств - уменьшаем интенсивность */
@media (max-width: 768px) {
  .block-with-glow::before {
    opacity: 0.5;
  }
  
  .block-with-shadow-glow {
    animation-duration: 4s;
  }
  
  @keyframes shadow-pulse {
    0%, 100% {
      box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 102, 255, 0.15);
    }
    50% {
      box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 102, 255, 0.2);
    }
  }
}

.tooltip {
    pointer-events: none !important;
} 