:root {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-card: #252525;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --accent: #8c67ef;
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 1.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.2rem;
  text-align: center;
  margin: 0.75rem 0 0;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Header */
header {
  margin-bottom: 2rem;
}

header .container {
  padding: 2rem;
  text-align: center;
}

/* Main */
main {
  margin-bottom: 2rem;
}

/* Artists Grid Layout */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.artist-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.artist-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
}

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

.artist-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  user-select: none;
}

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

.artist-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.75rem;
  transition: var(--transition);
  user-select: none;
}

.artist-wrapper:hover .artist-name {
  color: var(--accent);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 0;
  background-color: transparent;
}

footer p {
  color: var(--text-secondary);
  cursor: default;
}

/* Responsive Design */
@media (max-width: 768px) {
  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .artist-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 1.25rem;
  }

  body {
    padding: 0.75rem;
  }
}