/* 艺术家详情页样式 */

/* 强制横向排列统计信息 - 不换行，一行显示 */
.custom-stats-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-top: 15px !important;
    padding: 0 !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 100% !important;
    overflow: visible !important;
}

.custom-artist-info .custom-stats-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-top: 15px !important;
    padding: 0 !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 100% !important;
    overflow: visible !important;
}

/* 确保父容器宽度足够大 */
.custom-artist-info {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 600px !important;
}

.custom-card-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.custom-stats-group .stat-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.custom-artist-info .custom-stats-group .stat-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.custom-stats-group .stat-item:hover,
.custom-artist-info .custom-stats-group .stat-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(170, 60, 255, 0.3) !important;
}

.custom-stats-group .stat-item i,
.custom-artist-info .custom-stats-group .stat-item i {
    font-size: 16px !important;
    color: var(--primary, #aa3cff) !important;
    opacity: 0.8 !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.custom-stats-group .stat-item .stat-label,
.custom-artist-info .custom-stats-group .stat-item .stat-label {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-right: 4px !important;
    display: inline-block !important;
}

.custom-stats-group .stat-item .stat-value,
.custom-artist-info .custom-stats-group .stat-item .stat-value {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    display: inline-block !important;
}

/* 封面占位符样式 */
.cover-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 42, 42, 0.9);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    z-index: 1;
}

.cover-container .cover-placeholder,
.music-cover-container .cover-placeholder {
    border-radius: inherit;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .custom-artist-info .custom-stats-group {
        gap: 8px !important;
    }
    
    .custom-artist-info .custom-stats-group .stat-item {
        padding: 6px 12px !important;
    }
    
    .custom-artist-info .custom-stats-group .stat-item i {
        font-size: 14px !important;
    }
    
    .custom-artist-info .custom-stats-group .stat-item .stat-label {
        font-size: 12px !important;
    }
    
    .custom-artist-info .custom-stats-group .stat-item .stat-value {
        font-size: 14px !important;
    }
}

