.slider-section {
  background: #000;
  color: #fff;
  padding: 60px 30px;
}

.slider-section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.slider-card {
  position: relative;
  min-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.slider-card:hover img {
  transform: scale(1.05);
}

.slider-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
}

.slider-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 15px;
  text-align: center;
}

.slider-info h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}

.btn-watch {
  display: inline-block;
  background: #e50914;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn-watch:hover {
  background: #b00610;
}

.no-content {
  color: #aaa;
  text-align: center;
  width: 100%;
  font-size: 1rem;
}
