/*каруселі фільмів*/
.custom-slide {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #111;
}

.poster-wrapper {
  position: relative;
    text-align: center;
      
}

.poster-wrapper img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  backdrop-filter: blur(4px); /* розмиття позаду */
  background: rgba(0, 0, 0, 0.4); /* напівпрозорий фон */
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 6px 6px;
}

.custom-slide:hover .overlay-info {
  transform: translateY(0%);
  opacity: 1;
}

.movie-title {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  max-width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-age {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.custom-nav {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.custom-nav button {
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius:50%;
  cursor:pointer;
}
#custom-prev { left: 10px; }
#custom-next { right: 10px; }
.custom-nav button:hover { background: rgba(0,0,0,0.8); }


/*/каруселі фільмів*/