/* ===== HERO MINI ===== */
:root {
  --color-bg-light: rgba(255, 255, 255, 0.04);
  --color-border: var(--border);
  --color-text: var(--text);
  --color-text-secondary: var(--text-muted);
}

.hero-mini {
  background: linear-gradient(135deg, #6C3BF5 0%, #8B5CF6 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-mini-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-mini-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.hero-mini-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0;
}

/* ===== FILTERS ===== */
.artists-filters {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 30px 20px;
  margin-bottom: 40px;
}

.filters-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.filter-select,
.filter-input {
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.95rem;
  background: var(--bg-input);
  color: var(--color-text);
  font-family: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.filter-select:hover,
.filter-input:hover {
  border-color: #8B5CF6;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: #6C3BF5;
  box-shadow: 0 0 0 3px rgba(108, 59, 245, 0.1);
}

/* ===== ARTISTS GRID ===== */
.artists-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 200ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  border-color: #6C3BF5;
  box-shadow: 0 12px 28px rgba(7, 7, 12, 0.45);
  transform: translateY(-2px);
}

.artist-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.artist-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C3BF5, #8B5CF6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.artist-header-info {
  flex: 1;
  min-width: 0;
}

.artist-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
}

.artist-name:hover {
  color: #6C3BF5;
}

.artist-city {
  font-size: 0.9rem;
  color: #c1bddc;
  margin: 0;
}

.artist-card-body {
  flex: 1;
  margin-bottom: 16px;
}

.artist-bio {
  font-size: 0.9rem;
  color: #d4d1ea;
  line-height: 1.5;
  margin: 0 0 12px 0;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artist-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: #c1bddc;
  flex-wrap: wrap;
}

.artist-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.artist-card-footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-view-profile {
  flex: 1;
  padding: 10px 16px;
  background: #6C3BF5;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 150ms ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-view-profile:hover {
  background: #5a2dd8;
  color: #fff;
}

/* ===== LOADING STATE ===== */
.loading-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--color-text-secondary);
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border);
  border-top-color: #6C3BF5;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== EMPTY STATE ===== */
.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align: center;
  color: var(--color-text-secondary);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.empty-state-text {
  margin: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.btn-load-more {
  padding: 12px 32px;
  background: #6C3BF5;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 150ms ease;
}

.btn-load-more:hover:not(:disabled) {
  background: #5a2dd8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 59, 245, 0.3);
}

.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 56px;
  padding: 36px 20px 20px;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(108, 59, 245, 0.05) 0%, rgba(13, 13, 20, 0.6) 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 28px;
  padding-bottom: 24px;
}

.footer-section {
  min-width: 0;
}

.footer-heading {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: #b69dff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-mini-title {
    font-size: 1.8rem;
  }

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

  .filters-container {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .filter-select,
  .filter-input {
    height: 42px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-card {
    padding: 16px;
  }

  .hero-mini-title {
    font-size: 1.5rem;
  }

  .site-footer {
    padding: 30px 16px 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
