/* Reset default Neocities background */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: #f9f9f9 !important; /* Light clean background */
  color: #222;
  text-align: center;
}

/* Header */
header {
  background: #1e3a8a; /* clean deep blue */
  color: white;
  padding: 40px 20px;
}

h1 {
  margin: 0;
  font-size: 2.8rem;
}

header p {
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Main artist grid */
main.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 50px 80px;
  background: #f9f9f9; /* ensure background is light */
}

/* Artist cards */
.artist {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.artist:hover {
  transform: translateY(-5px);
}

.artist img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.rank {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1e3a8a;
}

.artist p {
  margin-top: 12px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  background: #1e3a8a; /* blue */
  color: white;
}
