* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background-color: #000;
  color: white;
  min-height: 100vh;
}

.artists-header {
  text-align: center;
 
}

.artists-header h1 {
  font-size: 2.50rem; /* 52px */
  font-weight: 800;
}

.subtitle {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.85;
}

.subtext {
  margin-top: 1.875rem; /* 30px */
  font-size: 0.875rem; /* 14px */
  opacity: 0.6;
}

.artists-grid {
  max-width: 75rem; /* 1200px */
  margin: auto;
  padding: 2.5rem 1.25rem 6.25rem; /* 40px 20px 100px */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem; /* 30px */
}

@media (max-width: 48rem) { /* 768px */
  .artists-grid {
    grid-template-columns: 1fr;
  }
}

.artist-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(0.75rem); /* 12px */
  border-radius: 1.125rem; /* 18px */
  padding: 1.875rem; /* 30px */
  box-shadow: 0 0 2.5rem rgba(0,0,0,0.6); /* 40px */
  transition: 0.3s ease;
}

.artist-card:hover {
  background: rgba(255,255,255,0.08);
}

.artist-card h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 0.375rem; /* 6px */
}

.handle {
  font-size: 0.875rem; /* 14px */
  color: #aaa;
  margin-bottom: 1rem; /* 16px */
}

.songs div {
  font-size: 0.9375rem; /* 15px */
  padding: 0.25rem 0; /* 4px */
  opacity: 0.85;
}

.artist-card a {
  display: inline-block;
  margin-top: 1.125rem; /* 18px */
  color: #3ea6ff;
  text-decoration: none;
  font-size: 0.875rem; /* 14px */
}

.artist-card a:hover {
  text-decoration: underline;
}
