.slider-section {
  background-color: #050714;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
}

.text-content {
  margin-bottom: 40px;
}

.slider-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.slider-subtitle {
  font-size: 48px;
  font-weight: 800;
  color: #f37f2d;
  margin-bottom: 20px;
}

.watch-btn {
  display: inline-flex;
  align-items: center;
  background-color: #3b5998;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.watch-btn:hover {
  background-color: #2d4373;
  transform: translateY(-2px);
}

.slider-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
}

.slider-track {
  display: flex;
  transition: transform 0.8s linear;
}

.slide {
  flex: 0 0 25%; /* 4 images visible */
  padding: 0 10px;
}

.slide img {
  width: 100%;
  height: 380px; /* Classic card height */
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 33.33%;
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 50%;
  }
  .slide img {
    height: 300px;
  }
  .slider-title {
    font-size: 32px;
  }
  .slider-subtitle {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .slide {
    flex: 0 0 100%;
  }
  .slide img {
    height: 240px;
  }
  .slider-title {
    font-size: 28px;
  }
  .slider-subtitle {
    font-size: 28px;
  }
  .watch-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
