<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS spÃ©cifique pour la page categories */

.categories-page {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 20px 15px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  min-height: 80vh;
}

/* En-tÃªte de la page */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #ff0000;
  padding-left: 20px;
}

/* Statistiques */
.categories-count {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.categories-count span {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.categories-count i {
  color: #ff0000;
  font-size: 1.2rem;
}

/* Filtres alphabÃ©tiques */
.alpha-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.alpha-filters a {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 35px;
  text-align: center;
}

.alpha-filters a:hover,
.alpha-filters a.active {
  background: #ff0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

/* Section des filtres de tri */
.filters-section {
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

.filters-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 140px;
  flex: 1;
}

.filter-group label {
  font-size: 0.9rem;
  color: #aaa;
  font-weight: 500;
}

.filter-group select {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 0.95rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.filter-group select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
}

/* Grille des catÃ©gories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.category-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.5);
}

.category-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.category-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.category-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-item:hover .category-thumbnail img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 20px 15px 10px;
}

.video-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.video-count i {
  color: #ff0000;
}

.category-item h2 {
  padding: 15px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-align: center;
}

.category-item:hover h2 {
  color: #ff0000;
}

/* Message quand aucune catÃ©gorie */
.no-categories {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  color: #aaa;
}

.no-categories i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #555;
}

.no-categories p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Pagination spÃ©cifique */
.pagination-container {
  margin-top: 40px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-item {
  margin: 0;
}

.page-link {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0 10px;
  font-weight: 500;
}

.page-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

.page-item.active .page-link {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-page {
    padding: 15px;
  }

  .section-header h1 {
    font-size: 2.2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .categories-page {
    padding: 10px;
  }

  .section-header {
    padding: 20px 15px;
  }

  .section-header h1 {
    font-size: 1.8rem;
    padding-left: 15px;
  }

  .categories-count {
    gap: 15px;
  }

  .categories-count span {
    font-size: 0.95rem;
    padding: 10px 15px;
  }

  .alpha-filters {
    gap: 6px;
    padding: 15px;
  }

  .alpha-filters a {
    padding: 6px 10px;
    font-size: 0.9rem;
    min-width: 30px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }

  .category-item h2 {
    padding: 12px;
    font-size: 1rem;
  }

  .video-count {
    font-size: 0.85rem;
  }

  .filters-form {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .categories-count {
    flex-direction: column;
    gap: 10px;
  }

  .categories-count span {
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .category-item h2 {
    font-size: 0.9rem;
    padding: 10px;
  }

  .page-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
</pre></body></html>