
.artists-container .content-header {
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border: none;
}

.artists-container .content-header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.artists-container .content-header .page-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.artists-container .content-header .page-title h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.25;
}

.artists-container .content-header .stats-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
}

.artists-container .content-header .stat-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.artists-container .content-header .stat-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #00d4ff);
    line-height: 1;
}

.artists-container .content-header .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.artists-container .content-header .header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.artists-container .content-header .sort-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.artists-container .content-header .sort-control .sort-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.artists-container .content-header .sort-control .sort-label svg {
    width: 14px;
    height: 14px;
}

.artists-container .content-header .sort-select {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    outline: none;
    transition: all 0.2s;
    min-width: 120px;
}

.artists-container .content-header .sort-select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.artists-container .content-header .sort-select:focus {
    border-color: var(--primary-color);
}

body.artists-page {
    background: var(--bg-page) !important;
    min-height: 100vh;
}

.artists-page {
    --artists-container-pt: 0px;
    --artists-sidebar-offset: calc(var(--header-height, 64px) + 16px);
    --artists-sidebar-mt: 16px;
}

.artists-page .artists-container {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
    padding: 80px var(--container-padding) 0;
    width: 100%;
    max-width: var(--container-max-width, 1600px);
    margin: 0 auto;
    box-sizing: border-box;
}

.artists-page .sidebar-filters{
    top: var(--artists-sidebar-offset);
    margin-top: var(--artists-sidebar-mt);
}

.artists-page .filter-checkbox.checked {
    background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.artists-page .filter-count {
    color: var(--text-secondary);
    font-size: 12px;
}

.artists-page .more-filters {
    margin-top: 10px;
}

.artists-page .more-genres {
    color: var(--primary-color);
    font-size: 13px;
    cursor: pointer;
}

.artists-page .more-genres:hover {
    text-decoration: underline;
}

.artists-page .main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0 !important;
}

.artists-page .breadcrumbs {
    font-size: 13px;
    color: var(--text-secondary, #9ca3af);
    margin-bottom: 10px;
}

.artists-page .breadcrumbs span {
    color: var(--text-secondary, #9ca3af);
}

.artists-page .promo-banner {
    background: linear-gradient(135deg, rgba(18, 194, 233, 0.15), rgba(196, 113, 237, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary, #ffffff);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.artists-page .promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artists-page .promo-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.artists-page .promo-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.artists-page .promo-btn {
    width: 32px;
    height: 32px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.artists-page .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.artists-page .sort-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary, #9ca3af);
}

.artists-page .sort-select {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: var(--bg-card, rgba(31, 41, 55, 0.5));
    color: var(--text-primary, #ffffff);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.artists-page .sort-select:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.artists-page .sort-select:focus {
    outline: none;
    border-color: var(--primary-color, #00c853);
}

.artists-page .results-count {
    font-size: 14px;
    color: var(--text-secondary, #9ca3af);
}

.artists-page .artists-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.artists-page .artist-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.artists-page .artist-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
}

.artists-page .artist-avatar {
    width: 50px;
    height: 50px;
    position: relative;
    margin-right: 15px;
}

.artists-page .artist-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.artists-page .artist-country {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid white;
}

.artists-page .artist-country.de {
    background-image: url('../images/flags/de.svg');
}

.artists-page .artist-country.es {
    background-image: url('../images/flags/es.svg');
}

.artists-page .artist-country.uk {
    background-image: url('../images/flags/uk.svg');
}

.artists-page .artist-country.fr {
    background-image: url('../images/flags/fr.svg');
}

.artists-page .artist-country.nl {
    background-image: url('../images/flags/nl.svg');
}

.artists-page .artist-info {
    flex: 1;
}

.artists-page .artist-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #ffffff);
    margin: 0 0 5px 0;
}

.artists-page .artist-name-link {
    color: var(--text-primary, #ffffff);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.artists-page .artist-name-link:hover {
    color: var(--primary-color, #00c853);
}

.artists-page .artist-name-link .artist-name {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
}

.artists-page .artist-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artists-page .artist-link:hover {
    opacity: 0.9;
}

.artists-page .artist-link .artist-avatar {
    transition: transform 0.2s;
}

.artists-page .artist-link:hover .artist-avatar {
    transform: scale(1.05);
}

.artists-page .artist-stats {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary, #9ca3af);
}

.artists-page .artist-albums, .artists-page .artist-tracks {
    position: relative;
}

.artists-page .artist-albums::after {
    content: "•";
    position: absolute;
    right: -8px;
    top: 0;
}

.artists-page .artist-actions {
    margin-left: 20px;
}

.artists-page .btn-follow {
    padding: 6px 16px;
    background-color: var(--primary-color, #00c853);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.artists-page .btn-follow i {
    font-size: 12px;
}

.artists-page .btn-follow .follow-text {
    display: inline-block;
}

.artists-page .btn-follow:hover {
    background-color: var(--primary-hover, #00b248);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

@media (max-width: 992px) {
    .artists-page .artists-container {
        grid-template-columns: 1fr;
        padding-left: var(--container-padding) !important;
    }
    
    .artists-page .sidebar-filters {
        order: 2;
        position: static !important;
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .artists-page .main-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .artists-page .artists-container {
        flex-direction: column;
    }
    
    .artists-page .sidebar-filters {
        width: 100%;
        margin-bottom: 20px;
        position: static !important;
    }
    
    .artists-page .artist-item {
        padding: 15px 10px;
    }
    
    .artists-page .artist-avatar {
        width: 50px;
        height: 50px;
    }
    
    .artists-page .artist-name {
        font-size: 14px;
    }
    
    .artists-page .artist-stats {
        font-size: 12px;
    }
    
    .artists-page .results-header {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .artists-page .artist-item {
        flex-wrap: wrap;
    }
    
    .artists-page .artist-actions {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .artists-page .btn-follow {
        width: 100%;
    }
}

.artists-page .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    min-height: 400px;
}

.artists-page .empty-icon {
    margin-bottom: 20px;
    opacity: 0.6;
}

.artists-page .empty-icon svg {
    color: var(--text-secondary);
}

.artists-page .empty-state h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.artists-page .empty-state p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.5;
}

.artists-page .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color, #1db954);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.artists-page .btn-primary:hover {
    background-color: var(--accent-hover, #1ed760);
    text-decoration: none;
    color: white;
}

.artists-page .btn-follow.following {
    background-color: var(--bg-card, rgba(31, 41, 55, 0.5));
    color: var(--text-primary, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.artists-page .btn-follow.following:hover {
    background-color: var(--bg-card, rgba(31, 41, 55, 0.7));
    border-color: rgba(255, 255, 255, 0.3);
}