/* ---------- ARTISTS PAGE ---------- */
.artists-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #2C2C2C;
}

.artists-hero h1 {
    color: #FFFFFF;
    font-size: 3.5rem;
    margin: 1rem 0;
}

.artists-hero p {
    color: #9E9E9E;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-btn {
    display: inline-block;
    background: #FFFFFF;
    color: #121212;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.2s;
}

.hero-btn:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
}

.artists-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Sidebar */
.artists-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-box, .featured-box, .submit-box {
    background: #1E1E1E;
    border: 1px solid #2C2C2C;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.filter-box h3, .featured-box h3, .submit-box h3 {
    color: #FFFFFF;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2C2C2C;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group label {
    display: block;
    color: #9E9E9E;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.filter-group input, .filter-group select {
    width: 100%;
    background: #2C2C2C;
    border: 1px solid #3a3a3a;
    padding: 0.6rem;
    color: #FFFFFF;
    font-family: inherit;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.checkbox-label span {
    color: #E0E0E0;
    font-size: 0.8rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.filter-btn, .reset-btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem;
    text-decoration: none;
    font-size: 0.7rem;
    cursor: pointer;
    border: none;
}

.filter-btn {
    background: #FFFFFF;
    color: #121212;
    font-weight: 600;
}

.reset-btn {
    background: #2C2C2C;
    color: #E0E0E0;
    border: 1px solid #3a3a3a;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: #2C2C2C;
    text-decoration: none;
    transition: all 0.2s;
}

.featured-item:hover {
    background: #3a3a3a;
}

.featured-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.featured-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.featured-item span {
    color: #FFFFFF;
    font-size: 0.8rem;
}

.submit-artist-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0.6rem;
    text-decoration: none;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.submit-artist-btn:hover {
    background: #FFFFFF;
    color: #121212;
}

/* Artists Grid */
.artists-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background: #1E1E1E;
    border: 1px solid #2C2C2C;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.artist-link {
    text-decoration: none;
    display: block;
}

.artist-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #121212;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: #1a1a1a;
}

.featured-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #FFAA44;
    color: #121212;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 0;
}

.artist-info {
    padding: 1rem;
}

.artist-info h2 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.artist-genre {
    color: #9E9E9E;
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
}

.artist-country {
    color: #6c6c6c;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}

.artist-bio {
    color: #B0B0B0;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Paginierung */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.page-btn {
    background: #2C2C2C;
    color: #E0E0E0;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.page-btn:hover, .page-btn.active {
    background: #FFFFFF;
    color: #121212;
}

/* No Artists */
.no-artists {
    text-align: center;
    padding: 3rem;
    background: #1E1E1E;
    border: 1px solid #2C2C2C;
}

.no-artists a {
    color: #FFFFFF;
    margin-top: 1rem;
    display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
    .artists-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .artists-sidebar {
        width: 100%;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-hero h1 {
        font-size: 2rem;
    }
}