.artists-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 1.5rem 3rem;
}

/* Header */
.artists-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.artists-page-header h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.artists-page-header p {
    color: #999;
    font-size: 1.1rem;
}

/* Search & Filter Bar */
.artists-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.artists-search-form {
    display: flex;
    gap: 0.5rem;
}

.artists-search-input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.artists-search-input::placeholder {
    color: #555;
}

.artists-search-input:focus {
    border-color: #ff0000;
}

.artists-search-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.artists-search-btn:hover {
    background: #cc0000;
}

/* Genre Pills */
.artists-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.genre-pill {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    text-decoration: none;
    border: 1px solid #333;
    color: #aaa;
    background: transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.genre-pill:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.genre-pill.active {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.genre-pill-clear {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    text-decoration: none;
    border: 1px solid #555;
    color: #999;
    background: transparent;
    transition: all 0.2s;
}

.genre-pill-clear:hover {
    border-color: #fff;
    color: #fff;
}

/* Results count */
.artists-count {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* Artist Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.artist-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

.artist-card:hover {
    transform: translateY(-4px);
    border-color: #ff0000;
}

.artist-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.artist-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 3rem;
}

.artist-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.artist-card-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-card-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.artist-card-genre {
    font-size: 0.72rem;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.artist-card-followers {
    color: #666;
    font-size: 0.8rem;
    margin-top: auto;
}

/* Empty state */
.artists-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* Pagination */
.artists-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.artists-pagination a,
.artists-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.artists-pagination a {
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid #2a2a2a;
}

.artists-pagination a:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.artists-pagination span.current {
    background: #ff0000;
    color: #fff;
    border: 1px solid #ff0000;
}

@media (max-width: 768px) {
    .artists-page-header h1 {
        font-size: 2rem;
    }

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

    .artists-search-form {
        flex-direction: column;
    }
}
