<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 channels */

.channels-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 */
.channels-count {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.channels-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;
}

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

/* Grille des chaÃŽnes */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

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

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

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

.channel-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

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

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

.channel-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;
}

.channel-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.channel-info h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-align: center;
}

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

/* Section des filtres alphabÃŠtiques pour les chaÃŽnes */
.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);
}

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

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

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

/* Pagination */
.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) {
  .channels-page {
    padding: 15px;
  }

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

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

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

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

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

  .channels-count {
    gap: 15px;
  }

  .channels-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;
  }

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

  .channel-info h2 {
    font-size: 1rem;
  }

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

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

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

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

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

  .channel-info h2 {
    font-size: 0.9rem;
  }

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