<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Artists Page Styles */

/* Hero Section */
.artists-hero {
  position: relative;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgb(var(--card));
  border: 1px solid rgba(var(--border));
}

@media (min-width: 768px) {
  .artists-hero {
    padding: 3rem 1rem;
  }
}

.artists-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--primary), 0.1), transparent);
  pointer-events: none;
}

.artists-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.artists-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(to right, rgb(var(--primary)), rgb(var(--primary-light, var(--primary))));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

@media (min-width: 640px) {
  .artists-hero__title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .artists-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.artists-hero__subtitle {
  font-size: 0.875rem;
  color: rgb(var(--muted-foreground));
  line-height: 1.6;
}

@media (min-width: 640px) {
  .artists-hero__subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .artists-hero__subtitle {
    font-size: 1.125rem;
  }
}

/* Categories Section */
.categories-section {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .categories-section {
    margin-bottom: 2rem;
  }
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .categories-list {
    gap: 0.75rem;
  }
}

.category-item {
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  background-color: rgb(var(--secondary));
  color: rgb(var(--secondary-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid rgba(var(--border));
}

@media (min-width: 640px) {
  .category-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.category-item:hover {
  background-color: rgb(var(--accent));
}

.category-item.active {
  background-color: rgb(var(--primary));
  color: white;
  border-color: rgb(var(--primary));
}

/* Artists Filter */
.artists-filter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .artists-filter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}

.artists-filter__search {
  position: relative;
  flex: 1;
}

.artists-filter__input {
  width: 100%;
  height: 2.5rem;
  padding: 0 2.5rem 0 1rem;
  border-radius: 0.5rem;
  background-color: rgb(var(--card));
  border: 1px solid rgba(var(--border));
  color: rgb(var(--foreground));
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}

.artists-filter__input:focus {
  border-color: rgb(var(--primary));
}

.artists-filter__button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgb(var(--muted-foreground));
  cursor: pointer;
}

.artists-filter__button:hover {
  color: rgb(var(--primary));
}

.artists-filter__sort {
  width: 100%;
}

@media (min-width: 640px) {
  .artists-filter__sort {
    width: auto;
  }
}

.artists-filter__select {
  width: 100%;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background-color: rgb(var(--card));
  border: 1px solid rgba(var(--border));
  color: rgb(var(--foreground));
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 0.75rem center;
  background-size: 1rem;
}

@media (min-width: 640px) {
  .artists-filter__select {
    width: 12rem;
  }
}

.artists-filter__select:focus {
  border-color: rgb(var(--primary));
}

/* Artists Grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .artists-grid {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .artists-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Artist Card */
.artist-card {
  background-color: rgb(var(--card));
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  border: 1px solid rgba(var(--border));
}

.artist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
}

.artist-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.artist-card__avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}

.artist-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.artist-card:hover .artist-card__avatar img {
  transform: scale(1.05);
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.artist-card:hover .artist-card__overlay {
  opacity: 1;
}

.artist-card__play-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgb(var(--primary));
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.3s, background-color 0.3s;
}

@media (min-width: 640px) {
  .artist-card__play-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .artist-card__play-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}

.artist-card__play-btn:hover {
  transform: scale(1.1);
  background-color: rgb(var(--primary-light, var(--primary)));
}

.artist-card__info {
  padding: 0.625rem 0.625rem 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .artist-card__info {
    padding: 0.75rem 0.75rem 1rem;
  }
}

.artist-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgb(var(--foreground));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .artist-card__name {
    font-size: 0.9rem;
  }
}

.artist-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgb(var(--muted-foreground));
}

.artist-card__genre {
  white-space: nowrap;
}

.artist-card__dot {
  margin: 0 0.25rem;
}

.artist-card__tracks {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 5rem;
}

@media (min-width: 640px) {
  .pagination {
    gap: 0.5rem;
  }
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  background-color: rgb(var(--card));
  color: rgb(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid rgba(var(--border));
  transition: background-color 0.3s, color 0.3s;
}

@media (min-width: 640px) {
  .pagination__item {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
  }
}

.pagination__item:hover {
  background-color: rgb(var(--accent));
}

.pagination__item--active {
  background-color: rgb(var(--primary));
  color: white;
  border-color: rgb(var(--primary));
}

.pagination__item--next {
  font-size: 1rem;
}

@media (min-width: 640px) {
  .pagination__item--next {
    font-size: 1.25rem;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .artist-card__overlay {
    opacity: 0.5;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .artist-card__play-btn {
    opacity: 0.9;
  }
}

</pre></body></html>