.bestGlide {
  max-width: 100%;
  margin: 40px auto;
  perspective: 1000px;
}

.glide__slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-style: preserve-3d;
}

.movie-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.movie-card img {
  display: block;
  width: 100%;
  height: auto;
}

.tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.glide__arrow {
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  padding: 8px 12px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.glide__arrow:hover {
  background: rgba(255,255,255,1);
}

/* واکنش‌گرا */
@media (max-width: 1024px) {
  .bestGlide {
    margin: 20px auto;
  }
}