body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
    text-align: center;
}

.header {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.05);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s;
    text-decoration: none;
    color: #fff;
}

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

.artist-cover {
    width: 100%;
    height: 300px;
    background: center/cover no-repeat;
    border-radius: 8px;
    margin-bottom: 1rem;
}

footer {
    padding: 3rem;
    opacity: 0.7;
}