
.artist-not-found {
    padding: 60px 0;
    text-align: center;
}

.not-found-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.not-found-illustration {
    margin-bottom: 40px;
}

.music-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.music-icon i {
    font-size: 48px;
    color: white;
    position: absolute;
}

.music-icon .fa-music {
    animation: float 3s ease-in-out infinite;
}

.music-icon .fa-search {
    font-size: 24px;
    bottom: 20px;
    right: 20px;
    background: #ff6b6b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.not-found-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.not-found-message {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
}

.suggestions {
    background: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.suggestions h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.suggestion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestion-list li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 30px;
}

.suggestion-list li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

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

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.popular-artists {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
}

.popular-artists h3 {
    color: #2d3748;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.popular-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.popular-artist-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.popular-artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.artist-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.artist-avatar.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.artist-details h4 {
    margin: 0 0 5px 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.song-count {
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .not-found-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .popular-artists-grid {
        grid-template-columns: 1fr;
    }
    
    .suggestions {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .music-icon {
        width: 80px;
        height: 80px;
    }
    
    .music-icon i {
        font-size: 32px;
    }
    
    .music-icon .fa-search {
        font-size: 18px;
        width: 30px;
        height: 30px;
    }
    
    .not-found-title {
        font-size: 1.75rem;
    }
    
    .not-found-message {
        font-size: 1rem;
    }
}




.error-container {
                text-align: center;
                max-width: 500px;
                padding: 3rem 2rem;
            }
            .error-icon {
                font-size: 4rem;
                margin-bottom: 1.5rem;
                opacity: 0.8;
            }
            .error-title {
                font-size: 2rem;
                font-weight: 300;
                margin-bottom: 1rem;
                color: #fff;
            }
            .error-message {
                font-size: 1.1rem;
                margin-bottom: 2rem;
                opacity: 0.8;
            }
            .error-actions {
                display: flex;
                gap: 1rem;
                justify-content: center;
                flex-wrap: wrap;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                border: 1px solid #444;
                border-radius: 6px;
                text-decoration: none;
                color: #e0e0e0;
                transition: all 0.3s ease;
                background: rgba(255,255,255,0.05);
            }
            .btn-primary {
                background: #007bff;
                border-color: #007bff;
                color: white;
            }
            .btn:hover {
                background: rgba(255,255,255,0.1);
                transform: translateY(-1px);
            }
            .btn-primary:hover {
                background: #0056b3;
                border-color: #0056b3;
            }
