/* Style pour le composant MovieCategory */

.movie-category {
  margin-bottom: 60px;
  padding: 0 40px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #e0e0e0;
  border-bottom: 3px solid #ff6b6b;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.movies-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 100%;
}

.no-movies-category {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 1024px) {
  .movie-category {
    padding: 0 30px;
  }

  .category-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }

}

@media (max-width: 768px) {
  .movie-category {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {
  .movie-category {
    margin-bottom: 30px;
    padding: 0 12px;
  }

  .category-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

}
