.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px dashed rgba(0, 0, 0, 0.9);
  border-radius: 30px;
  background-image: url("bg.jpg");
}

.mySlides {
  position: relative; 
  display: none;
  padding-bottom: 56.25%;
}

.mySlides iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.custom-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.custom-control {
  cursor: pointer;
  font-size: 0;
  background-color: transparent;
  border: none;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px;
}

.custom-control:hover {
  opacity: 0.7;
  cursor: pointer;
}

.dashed-animation {
  position: relative;
  width: 100%;
  height: 500px;
  border: 4px dashed transparent;
  border-radius: 30px;
  animation: pulseGlow 0.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 767px) {
  .slideshow-container {
    border: 3px dashed rgba(0, 0, 0, 0.9);
    border-radius: 20px;
  }
  
  .custom-controls {
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  .custom-control {
    width: 20px;
    height: 20px;
  }
  
  .dashed-animation {
    height: 300px;
  }
}