.custom-movie-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.custom-movie-slider::-webkit-scrollbar {
  display: none; /* Kaydırma çubuğunu gizle */
}

.movie-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  background-color: #111;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  transition: transform 0.3s;
}

.movie-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #444;
}

.movie-card h4 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.movie-card p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.movie-card:hover {
  transform: scale(1.05);
}