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

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

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

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

/* Grille des tags */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

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

.tag-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.5);
}

.tag-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
}

.tag-item h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

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

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

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

/* Tag detail page styles */
.tag-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.tag-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.tag-info h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tag-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tag-stats span {
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #fff;
}

.tag-stats i {
  color: #ff0000;
}

/* Section des filtres alphabÃŠtiques pour les tags */
.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 aucun tag */
.no-tags {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  color: #aaa;
}

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

.no-tags 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: 768px) {
  .tags-page {
    padding: 10px;
  }

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

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

  .tags-count {
    gap: 15px;
  }

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

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

  .tag-item h2 {
    font-size: 1rem;
  }

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

  .tag-header {
    padding: 15px;
  }

  .tag-info h1 {
    font-size: 1.8rem;
  }
}

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

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

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

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

  .tag-item {
    padding: 15px 10px;
  }

  .tag-item h2 {
    font-size: 0.9rem;
  }

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